deer social fork for personal usage. but you might see a use idk. github mirror

Merge branch 'main' of https://github.com/bluesky-social/social-app

+6 -4
.github/workflows/pull-request-comment.yml
··· 84 84 repo: context.repo.repo, 85 85 pull_number: ${{ github.event.issue.number }} 86 86 }); 87 - 87 + 88 88 console.log(`PR HEAD SHA: ${pr.data.head.sha}`); 89 89 console.log(`PR HEAD REF: ${pr.data.head.ref}`); 90 - 90 + 91 91 core.setOutput('head-sha', pr.data.head.sha); 92 92 core.setOutput('head-ref', pr.data.head.ref); 93 93 ··· 188 188 header: pull-request-eas-build-${{ steps.pr-info.outputs.head-sha }} 189 189 number: ${{ github.event.issue.number }} 190 190 message: | 191 - Your requested OTA deployment was successful! You may now apply it by opening the deep link below in your browser: 191 + Your requested OTA deployment was successful! You may now apply it by either scanning the QR code or opening the deep link below in your browser: 192 + 193 + <img src="https://bsky-qr.vercel.app?channel=pull-request-${{ github.event.issue.number }}" width=300 height=300> 192 194 193 195 `bluesky://intent/apply-ota?channel=pull-request-${{ github.event.issue.number }}` 194 196 --- 197 + 195 198 *Generated by [PR labeler](https://github.com/expo/expo/actions/workflows/pr-labeler.yml) 🤖* 196 - 197 199 198 200 - name: 💬 Drop a comment 199 201 uses: marocchino/sticky-pull-request-comment@v2
+8
bskylink/locales/en.json
··· 1 + { 2 + "Potentially Dangerous Link": "Potentially Dangerous Link", 3 + "Blocked Link": "Blocked Link", 4 + "This link may be malicious. You should proceed at your own risk.": "This link may be malicious. You should proceed at your own risk.", 5 + "This link has been identified as malicious and has blocked for your safety.": "This link has been identified as malicious and has blocked for your safety.", 6 + "Continue Anyway": "Continue Anyway", 7 + "Return to Bluesky": "Return to Bluesky" 8 + }
+8
bskylink/locales/es.json
··· 1 + { 2 + "Potentially Dangerous Link": "Enlace Potencialmente Peligroso", 3 + "Blocked Link": "Enlace Bloqueado", 4 + "This link may be malicious. You should proceed at your own risk.": "Este enlace puede ser malicioso. Debes proceder bajo tu propio riesgo.", 5 + "This link has been identified as malicious and has blocked for your safety.": "Este enlace ha sido identificado como malicioso y ha sido bloqueado por tu seguridad.", 6 + "Continue Anyway": "Continuar de Todos Modos", 7 + "Return to Bluesky": "Regresar a Bluesky" 8 + }
+8
bskylink/locales/fr.json
··· 1 + { 2 + "Potentially Dangerous Link": "Lien potentiellement dangereux", 3 + "Blocked Link": "Lien bloqué", 4 + "This link may be malicious. You should proceed at your own risk.": "Ce lien est peut-être malveillant. Ne continuez qu’à vos risques et périls.", 5 + "This link has been identified as malicious and has blocked for your safety.": "Ce lien a été identifié comme malveillant et a été bloqué pour votre sécurité.", 6 + "Continue Anyway": "Continuer quand même", 7 + "Return to Bluesky": "Retourner sur Bluesky" 8 + }
+8 -1
bskylink/package.json
··· 8 8 "build": "tsc" 9 9 }, 10 10 "dependencies": { 11 - "@atproto/common": "^0.4.0", 11 + "@atproto/api": "^0.16.7", 12 + "@atproto/common": "^0.4.11", 12 13 "@types/escape-html": "^1.0.4", 13 14 "body-parser": "^1.20.2", 14 15 "cors": "^2.8.5", 15 16 "escape-html": "^1.0.3", 16 17 "express": "^4.19.2", 17 18 "http-terminator": "^3.2.0", 19 + "i18n": "^0.15.1", 18 20 "kysely": "^0.27.3", 21 + "lru-cache": "^11.1.0", 19 22 "pg": "^8.12.0", 20 23 "pino": "^9.2.0", 21 24 "uint8arrays": "^5.1.0" 22 25 }, 23 26 "devDependencies": { 27 + "@types/body-parser": "^1.19.5", 24 28 "@types/cors": "^2.8.17", 29 + "@types/express": "^4.17.21", 30 + "@types/i18n": "^0.13.12", 25 31 "@types/pg": "^8.11.6", 32 + "ts-node": "^10.9.2", 26 33 "typescript": "^5.4.5" 27 34 } 28 35 }
+6 -1
bskylink/src/bin.ts
··· 1 1 import {Database, envToCfg, httpLogger, LinkService, readEnv} from './index.js' 2 - 3 2 async function main() { 4 3 const env = readEnv() 5 4 const cfg = envToCfg(env) ··· 11 10 await migrateDb.migrateToLatestOrThrow() 12 11 await migrateDb.close() 13 12 } 13 + 14 14 const link = await LinkService.create(cfg) 15 + 16 + if (link.ctx.cfg.service.safelinkEnabled) { 17 + link.ctx.safelinkClient.runFetchEvents() 18 + } 19 + 15 20 await link.start() 16 21 httpLogger.info('link service is running') 17 22 process.on('SIGTERM', async () => {
+10
bskylink/src/cache/rule.ts
··· 1 + import {type SafelinkRule} from '../db/schema' 2 + 3 + export const exampleRule: SafelinkRule = { 4 + id: 1, 5 + eventType: 'addRule', 6 + url: 'https://malicious.example.com/phishing', 7 + pattern: 'domain', 8 + action: 'block', 9 + createdAt: '2024-06-01T12:00:00Z', 10 + }
+352
bskylink/src/cache/safelinkClient.ts
··· 1 + import { 2 + AtpAgent, 3 + CredentialSession, 4 + type ToolsOzoneSafelinkDefs, 5 + type ToolsOzoneSafelinkQueryEvents, 6 + } from '@atproto/api' 7 + import {ExpiredTokenError} from '@atproto/api/dist/client/types/com/atproto/server/confirmEmail.js' 8 + import {MINUTE} from '@atproto/common' 9 + import {LRUCache} from 'lru-cache' 10 + 11 + import {type ServiceConfig} from '../config.js' 12 + import type Database from '../db/index.js' 13 + import {type SafelinkRule} from '../db/schema.js' 14 + import {redirectLogger} from '../logger.js' 15 + 16 + const SAFELINK_MIN_FETCH_INTERVAL = 1_000 17 + const SAFELINK_MAX_FETCH_INTERVAL = 10_000 18 + const SCHEME_REGEX = /^[a-zA-Z][a-zA-Z0-9+.-]*:/ 19 + 20 + export class SafelinkClient { 21 + private domainCache: LRUCache<string, SafelinkRule | 'ok'> 22 + private urlCache: LRUCache<string, SafelinkRule | 'ok'> 23 + 24 + private db: Database 25 + 26 + private ozoneAgent: OzoneAgent 27 + 28 + private cursor?: string 29 + 30 + constructor({cfg, db}: {cfg: ServiceConfig; db: Database}) { 31 + this.domainCache = new LRUCache<string, SafelinkRule | 'ok'>({ 32 + max: 10000, 33 + }) 34 + 35 + this.urlCache = new LRUCache<string, SafelinkRule | 'ok'>({ 36 + max: 25000, 37 + }) 38 + 39 + this.db = db 40 + 41 + this.ozoneAgent = new OzoneAgent( 42 + cfg.safelinkPdsUrl!, 43 + cfg.safelinkAgentIdentifier!, 44 + cfg.safelinkAgentPass!, 45 + ) 46 + } 47 + 48 + public async tryFindRule(link: string): Promise<SafelinkRule | 'ok'> { 49 + let url: string 50 + let domain: string 51 + try { 52 + url = SafelinkClient.normalizeUrl(link) 53 + domain = SafelinkClient.normalizeDomain(link) 54 + } catch (e) { 55 + redirectLogger.error( 56 + {error: e, inputUrl: link}, 57 + 'failed to normalize looked up link', 58 + ) 59 + // fail open 60 + return 'ok' 61 + } 62 + 63 + // First, check if there is an existing URL rule. Note that even if the rule is 'ok', we still 64 + // want to check for a blocking domain rule, so we will only return here if the url rule exists 65 + // _and_ it is not 'ok'. 66 + const urlRule = this.urlCache.get(url) 67 + if (urlRule && urlRule !== 'ok') { 68 + return urlRule 69 + } 70 + 71 + // If we find a domain rule of _any_ kind, including 'ok', we can now return that rule. 72 + const domainRule = this.domainCache.get(domain) 73 + if (domainRule) { 74 + return domainRule 75 + } 76 + 77 + try { 78 + const maybeUrlRule = await this.getRule(this.db, url, 'url') 79 + this.urlCache.set(url, maybeUrlRule) 80 + return maybeUrlRule 81 + } catch (e) { 82 + this.urlCache.set(url, 'ok') 83 + } 84 + 85 + try { 86 + const maybeDomainRule = await this.getRule(this.db, domain, 'domain') 87 + this.domainCache.set(domain, maybeDomainRule) 88 + return maybeDomainRule 89 + } catch (e) { 90 + this.domainCache.set(domain, 'ok') 91 + } 92 + 93 + return 'ok' 94 + } 95 + 96 + private async getRule( 97 + db: Database, 98 + url: string, 99 + pattern: ToolsOzoneSafelinkDefs.PatternType, 100 + ): Promise<SafelinkRule> { 101 + return db.db 102 + .selectFrom('safelink_rule') 103 + .selectAll() 104 + .where('url', '=', url) 105 + .where('pattern', '=', pattern) 106 + .orderBy('createdAt', 'desc') 107 + .executeTakeFirstOrThrow() 108 + } 109 + 110 + private async addRule(db: Database, rule: SafelinkRule) { 111 + try { 112 + if (rule.pattern === 'url') { 113 + rule.url = SafelinkClient.normalizeUrl(rule.url) 114 + } else if (rule.pattern === 'domain') { 115 + rule.url = SafelinkClient.normalizeDomain(rule.url) 116 + } 117 + } catch (e) { 118 + redirectLogger.error( 119 + {error: e, inputUrl: rule.url}, 120 + 'failed to normalize rule input URL', 121 + ) 122 + return 123 + } 124 + 125 + db.db 126 + .insertInto('safelink_rule') 127 + .values({ 128 + id: rule.id, 129 + eventType: rule.eventType, 130 + url: rule.url, 131 + pattern: rule.pattern, 132 + action: rule.action, 133 + createdAt: rule.createdAt, 134 + }) 135 + .execute() 136 + .catch(err => { 137 + redirectLogger.error( 138 + {error: err, rule}, 139 + 'failed to add rule to database', 140 + ) 141 + }) 142 + 143 + if (rule.pattern === 'domain') { 144 + this.domainCache.delete(rule.url) 145 + } else { 146 + this.urlCache.delete(rule.url) 147 + } 148 + } 149 + 150 + private async removeRule(db: Database, rule: SafelinkRule) { 151 + try { 152 + if (rule.pattern === 'url') { 153 + rule.url = SafelinkClient.normalizeUrl(rule.url) 154 + } else if (rule.pattern === 'domain') { 155 + rule.url = SafelinkClient.normalizeDomain(rule.url) 156 + } 157 + } catch (e) { 158 + redirectLogger.error( 159 + {error: e, inputUrl: rule.url}, 160 + 'failed to normalize rule input URL', 161 + ) 162 + return 163 + } 164 + 165 + await db.db 166 + .deleteFrom('safelink_rule') 167 + .where('pattern', '=', 'domain') 168 + .where('url', '=', rule.url) 169 + .execute() 170 + .catch(err => { 171 + redirectLogger.error( 172 + {error: err, rule}, 173 + 'failed to remove rule from database', 174 + ) 175 + }) 176 + 177 + if (rule.pattern === 'domain') { 178 + this.domainCache.delete(rule.url) 179 + } else { 180 + this.urlCache.delete(rule.url) 181 + } 182 + } 183 + 184 + public async runFetchEvents() { 185 + let agent: AtpAgent 186 + try { 187 + agent = await this.ozoneAgent.getAgent() 188 + } catch (err) { 189 + redirectLogger.error({error: err}, 'error getting Ozone agent') 190 + setTimeout(() => this.runFetchEvents(), SAFELINK_MAX_FETCH_INTERVAL) 191 + return 192 + } 193 + 194 + let res: ToolsOzoneSafelinkQueryEvents.Response 195 + try { 196 + const cursor = await this.getCursor() 197 + res = await agent.tools.ozone.safelink.queryEvents({ 198 + cursor, 199 + limit: 100, 200 + sortDirection: 'asc', 201 + }) 202 + } catch (err) { 203 + if (err instanceof ExpiredTokenError) { 204 + redirectLogger.info('ozone agent had expired session, refreshing...') 205 + await this.ozoneAgent.refreshSession() 206 + setTimeout(() => this.runFetchEvents(), SAFELINK_MIN_FETCH_INTERVAL) 207 + return 208 + } 209 + 210 + redirectLogger.error( 211 + {error: err}, 212 + 'error fetching safelink events from Ozone', 213 + ) 214 + setTimeout(() => this.runFetchEvents(), SAFELINK_MAX_FETCH_INTERVAL) 215 + return 216 + } 217 + 218 + if (res.data.events.length === 0) { 219 + redirectLogger.info('received no new safelink events from ozone') 220 + setTimeout(() => this.runFetchEvents(), SAFELINK_MAX_FETCH_INTERVAL) 221 + } else { 222 + await this.db.transaction(async db => { 223 + for (const rule of res.data.events) { 224 + switch (rule.eventType) { 225 + case 'removeRule': 226 + await this.removeRule(db, rule) 227 + break 228 + case 'addRule': 229 + case 'updateRule': 230 + await this.addRule(db, rule) 231 + break 232 + default: 233 + redirectLogger.warn({rule}, 'received unknown rule event type') 234 + } 235 + } 236 + }) 237 + if (res.data.cursor) { 238 + redirectLogger.info( 239 + {cursor: res.data.cursor}, 240 + 'received new safelink events from Ozone', 241 + ) 242 + await this.setCursor(res.data.cursor) 243 + } 244 + setTimeout(() => this.runFetchEvents(), SAFELINK_MIN_FETCH_INTERVAL) 245 + } 246 + } 247 + 248 + private async getCursor() { 249 + if (this.cursor === '') { 250 + const res = await this.db.db 251 + .selectFrom('safelink_cursor') 252 + .selectAll() 253 + .where('id', '=', 1) 254 + .executeTakeFirst() 255 + if (!res) { 256 + return '' 257 + } 258 + this.cursor = res.cursor 259 + } 260 + return this.cursor 261 + } 262 + 263 + private async setCursor(cursor: string) { 264 + const updatedAt = new Date() 265 + try { 266 + await this.db.db 267 + .insertInto('safelink_cursor') 268 + .values({ 269 + id: 1, 270 + cursor, 271 + updatedAt, 272 + }) 273 + .onConflict(oc => oc.column('id').doUpdateSet({cursor, updatedAt})) 274 + .execute() 275 + this.cursor = cursor 276 + } catch (err) { 277 + redirectLogger.error({error: err}, 'failed to update safelink cursor') 278 + } 279 + } 280 + 281 + private static normalizeUrl(input: string) { 282 + if (!SCHEME_REGEX.test(input)) { 283 + input = `https://${input}` 284 + } 285 + const u = new URL(input) 286 + u.hash = '' 287 + let normalized = u.href.replace(SCHEME_REGEX, '').toLowerCase() 288 + if (normalized.endsWith('/')) { 289 + normalized = normalized.substring(0, normalized.length - 1) 290 + } 291 + return normalized 292 + } 293 + 294 + private static normalizeDomain(input: string) { 295 + if (!SCHEME_REGEX.test(input)) { 296 + input = `https://${input}` 297 + } 298 + const u = new URL(input) 299 + return u.host.toLowerCase() 300 + } 301 + } 302 + 303 + export class OzoneAgent { 304 + private identifier: string 305 + private password: string 306 + 307 + private session: CredentialSession 308 + private agent: AtpAgent 309 + 310 + private refreshAt = 0 311 + 312 + constructor(pdsHost: string, identifier: string, password: string) { 313 + this.identifier = identifier 314 + this.password = password 315 + 316 + this.session = new CredentialSession(new URL(pdsHost)) 317 + this.agent = new AtpAgent(this.session) 318 + } 319 + 320 + public async getAgent() { 321 + if (!this.identifier && !this.password) { 322 + throw new Error( 323 + 'OZONE_AGENT_HANDLE and OZONE_AGENT_PASS environment variables must be set', 324 + ) 325 + } 326 + 327 + if (!this.session.hasSession) { 328 + redirectLogger.info('creating Ozone session') 329 + await this.session.login({ 330 + identifier: this.identifier, 331 + password: this.password, 332 + }) 333 + redirectLogger.info('ozone session created successfully') 334 + this.refreshAt = Date.now() + 50 * MINUTE 335 + } 336 + 337 + if (Date.now() <= this.refreshAt) { 338 + await this.refreshSession() 339 + } 340 + 341 + return this.agent 342 + } 343 + 344 + public async refreshSession() { 345 + try { 346 + await this.session.refreshSession() 347 + this.refreshAt = Date.now() + 50 * MINUTE 348 + } catch (e) { 349 + redirectLogger.error({error: e}, 'error refreshing session') 350 + } 351 + } 352 + }
+21 -2
bskylink/src/config.ts
··· 1 - import {envInt, envList, envStr} from '@atproto/common' 1 + import {envBool, envInt, envList, envStr} from '@atproto/common' 2 2 3 3 export type Config = { 4 4 service: ServiceConfig ··· 9 9 port: number 10 10 version?: string 11 11 hostnames: string[] 12 + hostnamesSet: Set<string> 12 13 appHostname: string 14 + safelinkEnabled: boolean 15 + safelinkPdsUrl?: string 16 + safelinkAgentIdentifier?: string 17 + safelinkAgentPass?: string 13 18 } 14 19 15 20 export type DbConfig = { ··· 36 41 dbPostgresPoolSize?: number 37 42 dbPostgresPoolMaxUses?: number 38 43 dbPostgresPoolIdleTimeoutMs?: number 44 + safelinkEnabled?: boolean 45 + safelinkPdsUrl?: string 46 + safelinkAgentIdentifier?: string 47 + safelinkAgentPass?: string 39 48 } 40 49 41 50 export const readEnv = (): Environment => { ··· 52 61 dbPostgresPoolIdleTimeoutMs: envInt( 53 62 'LINK_DB_POSTGRES_POOL_IDLE_TIMEOUT_MS', 54 63 ), 64 + safelinkEnabled: envBool('LINK_SAFELINK_ENABLED'), 65 + safelinkPdsUrl: envStr('LINK_SAFELINK_PDS_URL'), 66 + safelinkAgentIdentifier: envStr('LINK_SAFELINK_AGENT_IDENTIFIER'), 67 + safelinkAgentPass: envStr('LINK_SAFELINK_AGENT_PASS'), 55 68 } 56 69 } 57 70 ··· 60 73 port: env.port ?? 3000, 61 74 version: env.version, 62 75 hostnames: env.hostnames, 63 - appHostname: env.appHostname || 'bsky.app', 76 + hostnamesSet: new Set(env.hostnames), 77 + appHostname: env.appHostname ?? 'bsky.app', 78 + safelinkEnabled: env.safelinkEnabled ?? false, 79 + safelinkPdsUrl: env.safelinkPdsUrl, 80 + safelinkAgentIdentifier: env.safelinkAgentIdentifier, 81 + safelinkAgentPass: env.safelinkAgentPass, 64 82 } 65 83 if (!env.dbPostgresUrl) { 66 84 throw new Error('Must configure postgres url (LINK_DB_POSTGRES_URL)') ··· 75 93 size: env.dbPostgresPoolSize ?? 10, 76 94 }, 77 95 } 96 + 78 97 return { 79 98 service: serviceCfg, 80 99 db: dbCfg,
+7 -1
bskylink/src/context.ts
··· 1 - import {Config} from './config.js' 1 + import {SafelinkClient} from './cache/safelinkClient.js' 2 + import {type Config} from './config.js' 2 3 import Database from './db/index.js' 3 4 4 5 export type AppContextOptions = { ··· 9 10 export class AppContext { 10 11 cfg: Config 11 12 db: Database 13 + safelinkClient: SafelinkClient 12 14 abortController = new AbortController() 13 15 14 16 constructor(private opts: AppContextOptions) { 15 17 this.cfg = this.opts.cfg 16 18 this.db = this.opts.db 19 + this.safelinkClient = new SafelinkClient({ 20 + cfg: this.opts.cfg.service, 21 + db: this.opts.db, 22 + }) 17 23 } 18 24 19 25 static async fromConfig(cfg: Config, overrides?: Partial<AppContextOptions>) {
+34
bskylink/src/db/migrations/002-safelink.ts
··· 1 + import {type Kysely, sql} from 'kysely' 2 + 3 + export async function up(db: Kysely<unknown>): Promise<void> { 4 + await db.schema 5 + .createTable('safelink_rule') 6 + .addColumn('id', 'bigserial', col => col.primaryKey()) 7 + .addColumn('eventType', 'varchar', col => col.notNull()) 8 + .addColumn('url', 'varchar', col => col.notNull()) 9 + .addColumn('pattern', 'varchar', col => col.notNull()) 10 + .addColumn('action', 'varchar', col => col.notNull()) 11 + .addColumn('createdAt', 'timestamptz', col => col.notNull()) 12 + .execute() 13 + 14 + await db.schema 15 + .createTable('safelink_cursor') 16 + .addColumn('id', 'bigserial', col => col.notNull()) 17 + .addColumn('cursor', 'varchar', col => col.notNull()) 18 + .addColumn('updatedAt', 'timestamptz', col => col.notNull()) 19 + .execute() 20 + 21 + await db.schema 22 + .createIndex('safelink_rule_url_pattern_created_at_idx') 23 + .on('safelink_rule') 24 + .expression(sql`"url", "pattern", "createdAt" DESC`) 25 + .execute() 26 + } 27 + 28 + export async function down(db: Kysely<unknown>): Promise<void> { 29 + await db.schema 30 + .dropIndex('safelink_rule_url_pattern_created_at_idx') 31 + .execute() 32 + await db.schema.dropTable('safelink_rule').execute() 33 + await db.schema.dropTable('safelink_cursor').execute() 34 + }
+2
bskylink/src/db/migrations/index.ts
··· 1 1 import * as init from './001-init.js' 2 + import * as safelink from './002-safelink.js' 2 3 3 4 export default { 4 5 '001': init, 6 + '002': safelink, 5 7 }
+21 -1
bskylink/src/db/schema.ts
··· 1 - import {Selectable} from 'kysely' 1 + import {type ToolsOzoneSafelinkDefs} from '@atproto/api' 2 + import {type Selectable} from 'kysely' 2 3 3 4 export type DbSchema = { 4 5 link: Link 6 + safelink_rule: SafelinkRule 7 + safelink_cursor: SafelinkCursor 5 8 } 6 9 7 10 export interface Link { ··· 14 17 StarterPack = 1, 15 18 } 16 19 20 + export interface SafelinkRule { 21 + id: number 22 + eventType: ToolsOzoneSafelinkDefs.EventType 23 + url: string 24 + pattern: ToolsOzoneSafelinkDefs.PatternType 25 + action: ToolsOzoneSafelinkDefs.ActionType 26 + createdAt: string 27 + } 28 + 29 + export interface SafelinkCursor { 30 + id: number 31 + cursor: string 32 + updatedAt: Date 33 + } 34 + 17 35 export type LinkEntry = Selectable<Link> 36 + export type SafelinkRuleEntry = Selectable<SafelinkRule> 37 + export type SafelinkCursorEntry = Selectable<SafelinkCursor>
+21
bskylink/src/html/linkRedirectContents.ts
··· 1 + import escapeHTML from 'escape-html' 2 + 3 + export function linkRedirectContents(link: string): string { 4 + return ` 5 + <html> 6 + <head> 7 + <meta http-equiv="refresh" content="0; URL='${escapeHTML(link)}'" /> 8 + <meta 9 + http-equiv="Cache-Control" 10 + content="no-store, no-cache, must-revalidate, max-age=0" /> 11 + <meta http-equiv="Pragma" content="no-cache" /> 12 + <meta http-equiv="Expires" content="0" /> 13 + <style> 14 + :root { 15 + color-scheme: light dark; 16 + } 17 + </style> 18 + </head> 19 + </html> 20 + ` 21 + }
+44
bskylink/src/html/linkWarningContents.ts
··· 1 + import escapeHTML from 'escape-html' 2 + import {type Request} from 'express' 3 + 4 + export function linkWarningContents( 5 + req: Request, 6 + opts: { 7 + type: 'warn' | 'block' 8 + link: string 9 + }, 10 + ): string { 11 + const continueButton = 12 + opts.type === 'warn' 13 + ? `<a class="button secondary" href="${escapeHTML(opts.link)}">${req.__('Continue Anyway')}</a>` 14 + : '' 15 + 16 + return ` 17 + <div class="warning-icon">⚠️</div> 18 + <h1> 19 + ${ 20 + opts.type === 'warn' 21 + ? req.__('Potentially Dangerous Link') 22 + : req.__('Blocked Link') 23 + } 24 + </h1> 25 + <p class="warning-text"> 26 + ${ 27 + opts.type === 'warn' 28 + ? req.__( 29 + 'This link may be malicious. You should proceed at your own risk.', 30 + ) 31 + : req.__( 32 + 'This link has been identified as malicious and has blocked for your safety.', 33 + ) 34 + } 35 + </p> 36 + <div class="blocked-site"> 37 + <p class="site-url">${escapeHTML(opts.link)}</p> 38 + </div> 39 + <div class="button-group"> 40 + ${continueButton} 41 + <a class="button primary" href="https://bsky.app">${req.__('Return to Bluesky')}</a> 42 + </div> 43 + ` 44 + }
+120
bskylink/src/html/linkWarningLayout.ts
··· 1 + import escapeHTML from 'escape-html' 2 + 3 + export function linkWarningLayout( 4 + title: string, 5 + containerContents: string, 6 + ): string { 7 + return ` 8 + <!DOCTYPE html> 9 + <html> 10 + <head> 11 + <meta charset="UTF-8" /> 12 + <meta 13 + http-equiv="Cache-Control" 14 + content="no-store, no-cache, must-revalidate, max-age=0" /> 15 + <meta http-equiv="Pragma" content="no-cache" /> 16 + <meta http-equiv="Expires" content="0" /> 17 + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 18 + <title>${escapeHTML(title)}</title> 19 + <style> 20 + * { 21 + margin: 0; 22 + padding: 0; 23 + box-sizing: border-box; 24 + } 25 + body { 26 + font-family: 27 + -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, 28 + sans-serif; 29 + background-color: #ffffff; 30 + min-height: 100vh; 31 + display: flex; 32 + align-items: center; 33 + justify-content: center; 34 + padding: 20px; 35 + } 36 + .container { 37 + width: 100%; 38 + max-width: 400px; 39 + text-align: center; 40 + } 41 + .warning-icon { 42 + font-size: 48px; 43 + margin-bottom: 16px; 44 + } 45 + h1 { 46 + font-size: 20px; 47 + font-weight: 600; 48 + margin-bottom: 12px; 49 + color: #000000; 50 + } 51 + .warning-text { 52 + font-size: 15px; 53 + color: #536471; 54 + line-height: 1.4; 55 + margin-bottom: 24px; 56 + padding: 0 20px; 57 + } 58 + .blocked-site { 59 + background-color: #f7f9fa; 60 + border-radius: 12px; 61 + padding: 16px; 62 + margin-bottom: 24px; 63 + text-align: left; 64 + word-break: break-all; 65 + } 66 + .site-name { 67 + font-size: 16px; 68 + font-weight: 500; 69 + color: #000000; 70 + margin-bottom: 4px; 71 + word-break: break-word; 72 + display: block; 73 + text-align: center; 74 + } 75 + .site-url { 76 + font-size: 14px; 77 + color: #536471; 78 + word-break: break-all; 79 + display: block; 80 + text-align: center; 81 + } 82 + .button { 83 + border: none; 84 + border-radius: 24px; 85 + padding: 12px 32px; 86 + font-size: 16px; 87 + font-weight: 600; 88 + cursor: pointer; 89 + width: 100%; 90 + max-width: 280px; 91 + transition: background-color 0.2s; 92 + } 93 + .primary { 94 + background-color: #1d9bf0; 95 + color: white; 96 + } 97 + .secondary { 98 + } 99 + .back-button:hover { 100 + background-color: #1a8cd8; 101 + } 102 + .back-button:active { 103 + background-color: #1681c4; 104 + } 105 + @media (max-width: 480px) { 106 + .warning-text { 107 + padding: 0 10px; 108 + } 109 + .blocked-site { 110 + padding: 8px; 111 + } 112 + } 113 + </style> 114 + </head> 115 + <body> 116 + <div class="container">${containerContents}</div> 117 + </body> 118 + </html> 119 + ` 120 + }
+15
bskylink/src/i18n.ts
··· 1 + import path from 'node:path' 2 + import {fileURLToPath} from 'node:url' 3 + 4 + import i18n from 'i18n' 5 + 6 + const __filename = fileURLToPath(import.meta.url) 7 + const __dirname = path.dirname(__filename) 8 + 9 + i18n.configure({ 10 + locales: ['en', 'es', 'fr'], 11 + defaultLocale: 'en', 12 + directory: path.join(__dirname, '../locales'), 13 + }) 14 + 15 + export default i18n
+2
bskylink/src/index.ts
··· 7 7 8 8 import {type Config} from './config.js' 9 9 import {AppContext} from './context.js' 10 + import i18n from './i18n.js' 10 11 import {default as routes, errorHandler} from './routes/index.js' 11 12 12 13 export * from './config.js' ··· 25 26 static async create(cfg: Config): Promise<LinkService> { 26 27 let app = express() 27 28 app.use(cors()) 29 + app.use(i18n.init) 28 30 29 31 const ctx = await AppContext.fromConfig(cfg) 30 32 app = routes(ctx, app)
+13 -2
bskylink/src/logger.ts
··· 1 1 import {subsystemLogger} from '@atproto/common' 2 + import {type Logger} from 'pino' 2 3 3 - export const httpLogger = subsystemLogger('bskylink') 4 - export const dbLogger = subsystemLogger('bskylink:db') 4 + export const httpLogger: Logger = subsystemLogger('bskylink') 5 + export const dbLogger: Logger = subsystemLogger('bskylink:db') 6 + export const redirectLogger: Logger = subsystemLogger('bskylink:redirect') 7 + 8 + redirectLogger.info = ( 9 + orig => 10 + (...args: any[]) => { 11 + const [msg, ...rest] = args 12 + orig.apply(redirectLogger, [String(msg), ...rest]) 13 + console.log('[bskylink:redirect]', ...args) 14 + } 15 + )(redirectLogger.info) as typeof redirectLogger.info
+8 -5
bskylink/src/routes/createShortLink.ts
··· 1 1 import assert from 'node:assert' 2 2 3 3 import bodyParser from 'body-parser' 4 - import {Express, Request} from 'express' 4 + import {type Express, type Request} from 'express' 5 5 6 - import {AppContext} from '../context.js' 6 + import {type AppContext} from '../context.js' 7 7 import {LinkType} from '../db/schema.js' 8 8 import {randomId} from '../util.js' 9 9 import {handler} from './util.js' ··· 83 83 : `https://${req.headers.host}` 84 84 return `${baseUrl}/${id}` 85 85 } 86 - const baseUrl = ctx.cfg.service.hostnames.includes(req.headers.host) 87 - ? `https://${req.headers.host}` 86 + const host = req.headers.host ?? '' 87 + const baseUrl = ctx.cfg.service.hostnamesSet.has(host) 88 + ? `https://${host}` 88 89 : `https://${ctx.cfg.service.hostnames[0]}` 89 90 return `${baseUrl}/${id}` 90 91 } 91 92 92 93 const normalizedPathFromParts = (parts: string[]): string => { 94 + // When given ['path1', 'path2', 'te:fg'], output should be 95 + // /path1/path2/te:fg 93 96 return ( 94 97 '/' + 95 98 parts 96 99 .map(encodeURIComponent) 97 - .map(part => part.replaceAll('%3A', ':')) // preserve colons 100 + .map(part => part.replace(/%3A/g, ':')) // preserve colons 98 101 .join('/') 99 102 ) 100 103 }
+49 -6
bskylink/src/routes/redirect.ts
··· 1 1 import assert from 'node:assert' 2 2 3 3 import {DAY, SECOND} from '@atproto/common' 4 - import escapeHTML from 'escape-html' 5 4 import {type Express} from 'express' 6 5 7 6 import {type AppContext} from '../context.js' 7 + import {linkRedirectContents} from '../html/linkRedirectContents.js' 8 + import {linkWarningContents} from '../html/linkWarningContents.js' 9 + import {linkWarningLayout} from '../html/linkWarningLayout.js' 10 + import {redirectLogger} from '../logger.js' 8 11 import {handler} from './util.js' 9 12 10 13 const INTERNAL_IP_REGEX = new RegExp( ··· 39 42 return res.status(302).end() 40 43 } 41 44 45 + // Default to a max age header 42 46 res.setHeader('Cache-Control', `max-age=${(7 * DAY) / SECOND}`) 47 + res.status(200) 43 48 res.type('html') 44 - res.status(200) 49 + 50 + let html: string | undefined 51 + 52 + if (ctx.cfg.service.safelinkEnabled) { 53 + const rule = await ctx.safelinkClient.tryFindRule(link) 54 + if (rule !== 'ok') { 55 + switch (rule.action) { 56 + case 'whitelist': 57 + redirectLogger.info({rule}, 'Whitelist rule matched') 58 + break 59 + case 'block': 60 + html = linkWarningLayout( 61 + 'Blocked Link Warning', 62 + linkWarningContents(req, { 63 + type: 'block', 64 + link: url.href, 65 + }), 66 + ) 67 + res.setHeader('Cache-Control', 'no-store') 68 + redirectLogger.info({rule}, 'Block rule matched') 69 + break 70 + case 'warn': 71 + html = linkWarningLayout( 72 + 'Malicious Link Warning', 73 + linkWarningContents(req, { 74 + type: 'warn', 75 + link: url.href, 76 + }), 77 + ) 78 + res.setHeader('Cache-Control', 'no-store') 79 + redirectLogger.info({rule}, 'Warn rule matched') 80 + break 81 + default: 82 + redirectLogger.warn({rule}, 'Unknown rule matched') 83 + } 84 + } 85 + } 86 + 87 + // If there is no html defined yet, we will create a redirect html 88 + if (!html) { 89 + html = linkRedirectContents(url.href) 90 + } 45 91 46 - const escaped = escapeHTML(url.href) 47 - return res.send( 48 - `<html><head><meta http-equiv="refresh" content="0; URL='${escaped}'" /><style>:root { color-scheme: light dark; }</style></head></html>`, 49 - ) 92 + return res.end(html) 50 93 }), 51 94 ) 52 95 }
+239 -2
bskylink/tests/index.ts
··· 1 1 import assert from 'node:assert' 2 - import {AddressInfo} from 'node:net' 2 + import {type AddressInfo} from 'node:net' 3 3 import {after, before, describe, it} from 'node:test' 4 + 5 + import {ToolsOzoneSafelinkDefs} from '@atproto/api' 4 6 5 7 import {Database, envToCfg, LinkService, readEnv} from '../src/index.js' 6 8 ··· 15 17 appHostname: 'test.bsky.app', 16 18 dbPostgresSchema: 'link_test', 17 19 dbPostgresUrl: process.env.DB_POSTGRES_URL, 20 + safelinkEnabled: true, 21 + ozoneUrl: 'http://localhost:2583', 22 + ozoneAgentHandle: 'mod-authority.test', 23 + ozoneAgentPass: 'hunter2', 18 24 }) 19 25 const migrateDb = Database.postgres({ 20 26 url: cfg.db.url, ··· 26 32 await linkService.start() 27 33 const {port} = linkService.server?.address() as AddressInfo 28 34 baseUrl = `http://localhost:${port}` 35 + 36 + // Ensure blocklist, whitelist, and safelink rules are set up 37 + const now = new Date().toISOString() 38 + linkService.ctx.cfg.eventCache.smartUpdate({ 39 + $type: 'tools.ozone.safelink.defs#event', 40 + id: 1, 41 + eventType: ToolsOzoneSafelinkDefs.ADDRULE, 42 + url: 'https://en.wikipedia.org/wiki/Fight_Club', 43 + pattern: ToolsOzoneSafelinkDefs.URL, 44 + action: ToolsOzoneSafelinkDefs.WARN, 45 + reason: ToolsOzoneSafelinkDefs.SPAM, 46 + createdBy: 'did:example:admin', 47 + createdAt: now, 48 + comment: 'Do not talk about Fight Club', 49 + }) 50 + linkService.ctx.cfg.eventCache.smartUpdate({ 51 + $type: 'tools.ozone.safelink.defs#event', 52 + id: 2, 53 + eventType: ToolsOzoneSafelinkDefs.ADDRULE, 54 + url: 'https://gist.github.com/MattIPv4/045239bc27b16b2bcf7a3a9a4648c08a', 55 + pattern: ToolsOzoneSafelinkDefs.URL, 56 + action: ToolsOzoneSafelinkDefs.BLOCK, 57 + reason: ToolsOzoneSafelinkDefs.SPAM, 58 + createdBy: 'did:example:admin', 59 + createdAt: now, 60 + comment: 'All Bs', 61 + }) 62 + linkService.ctx.cfg.eventCache.smartUpdate({ 63 + $type: 'tools.ozone.safelink.defs#event', 64 + id: 3, 65 + eventType: ToolsOzoneSafelinkDefs.ADDRULE, 66 + url: 'https://en.wikipedia.org', 67 + pattern: ToolsOzoneSafelinkDefs.DOMAIN, 68 + action: ToolsOzoneSafelinkDefs.WHITELIST, 69 + reason: ToolsOzoneSafelinkDefs.NONE, 70 + createdBy: 'did:example:admin', 71 + createdAt: now, 72 + comment: 'Whitelisting the knowledge base of the internet', 73 + }) 74 + linkService.ctx.cfg.eventCache.smartUpdate({ 75 + $type: 'tools.ozone.safelink.defs#event', 76 + id: 4, 77 + eventType: ToolsOzoneSafelinkDefs.ADDRULE, 78 + url: 'https://www.instagram.com/teamseshbones/?hl=en', 79 + pattern: ToolsOzoneSafelinkDefs.URL, 80 + action: ToolsOzoneSafelinkDefs.BLOCK, 81 + reason: ToolsOzoneSafelinkDefs.SPAM, 82 + createdBy: 'did:example:admin', 83 + createdAt: now, 84 + comment: 'BONES has been erroneously blocked for the sake of this test', 85 + }) 86 + const later = new Date(Date.now() + 1000).toISOString() 87 + linkService.ctx.cfg.eventCache.smartUpdate({ 88 + $type: 'tools.ozone.safelink.defs#event', 89 + id: 5, 90 + eventType: ToolsOzoneSafelinkDefs.REMOVERULE, 91 + url: 'https://www.instagram.com/teamseshbones/?hl=en', 92 + pattern: ToolsOzoneSafelinkDefs.URL, 93 + action: ToolsOzoneSafelinkDefs.REMOVERULE, 94 + reason: ToolsOzoneSafelinkDefs.NONE, 95 + createdBy: 'did:example:admin', 96 + createdAt: later, 97 + comment: 98 + 'BONES has been resurrected to bring good music to the world once again', 99 + }) 100 + linkService.ctx.cfg.eventCache.smartUpdate({ 101 + $type: 'tools.ozone.safelink.defs#event', 102 + id: 6, 103 + eventType: ToolsOzoneSafelinkDefs.ADDRULE, 104 + url: 'https://www.leagueoflegends.com/en-us/', 105 + pattern: ToolsOzoneSafelinkDefs.URL, 106 + action: ToolsOzoneSafelinkDefs.WARN, 107 + reason: ToolsOzoneSafelinkDefs.SPAM, 108 + createdBy: 'did:example:admin', 109 + createdAt: now, 110 + comment: 111 + 'Could be quite the mistake to get into this addicting game, but we will warn instead of block', 112 + }) 29 113 }) 30 - 31 114 after(async () => { 32 115 await linkService?.destroy() 33 116 }) ··· 76 159 assert.strictEqual(json.message, 'Link not found') 77 160 }) 78 161 162 + it('League of Legends warned', async () => { 163 + const urlToRedirect = 'https://www.leagueoflegends.com/en-us/' 164 + const url = new URL(`${baseUrl}/redirect`) 165 + url.searchParams.set('u', urlToRedirect) 166 + const res = await fetch(url, {redirect: 'manual'}) 167 + assert.strictEqual(res.status, 200) 168 + const html = await res.text() 169 + assert.match( 170 + html, 171 + new RegExp(urlToRedirect.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')), 172 + ) 173 + // League of Legends is set to WARN, not BLOCK, so expect a warning (blocked-site div present) 174 + assert.match( 175 + html, 176 + /Warning: Malicious Link/, 177 + 'Expected warning not found in HTML', 178 + ) 179 + }) 180 + 181 + it('Wikipedia whitelisted, url restricted. Redirect safely since wikipedia is whitelisted', async () => { 182 + const urlToRedirect = 'https://en.wikipedia.org/wiki/Fight_Club' 183 + const url = new URL(`${baseUrl}/redirect`) 184 + url.searchParams.set('u', urlToRedirect) 185 + const res = await fetch(url, {redirect: 'manual'}) 186 + assert.strictEqual(res.status, 200) 187 + const html = await res.text() 188 + assert.match(html, /meta http-equiv="refresh"/) 189 + assert.match( 190 + html, 191 + new RegExp(urlToRedirect.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')), 192 + ) 193 + // Wikipedia domain is whitelisted, so no blocked-site div should be present 194 + assert.doesNotMatch(html, /"blocked-site"/) 195 + }) 196 + 197 + it('Unsafe redirect with block rule, due to the content of webpage.', async () => { 198 + const urlToRedirect = 199 + 'https://gist.github.com/MattIPv4/045239bc27b16b2bcf7a3a9a4648c08a' 200 + const url = new URL(`${baseUrl}/redirect`) 201 + url.searchParams.set('u', urlToRedirect) 202 + const res = await fetch(url, {redirect: 'manual'}) 203 + assert.strictEqual(res.status, 200) 204 + const html = await res.text() 205 + assert.match( 206 + html, 207 + new RegExp(urlToRedirect.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')), 208 + ) 209 + assert.match( 210 + html, 211 + /"blocked-site"/, 212 + 'Expected blocked-site div not found in HTML', 213 + ) 214 + }) 215 + 216 + it('Rule adjustment, safe redirect, 200 response for Instagram Account of teamsesh Bones', async () => { 217 + // Retrieve the latest event after all updates 218 + const result = linkService.ctx.cfg.eventCache.smartGet( 219 + 'https://www.instagram.com/teamseshbones/?hl=en', 220 + ) 221 + assert(result, 'Expected event not found in eventCache') 222 + assert.strictEqual(result.eventType, ToolsOzoneSafelinkDefs.REMOVERULE) 223 + const urlToRedirect = 'https://www.instagram.com/teamseshbones/?hl=en' 224 + const url = new URL(`${baseUrl}/redirect`) 225 + url.searchParams.set('u', urlToRedirect) 226 + const res = await fetch(url, {redirect: 'manual'}) 227 + assert.strictEqual(res.status, 200) 228 + const html = await res.text() 229 + assert.match(html, /meta http-equiv="refresh"/) 230 + assert.match( 231 + html, 232 + new RegExp(urlToRedirect.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')), 233 + ) 234 + }) 235 + 79 236 async function getRedirect(link: string): Promise<[number, string]> { 80 237 const url = new URL(link) 81 238 const base = new URL(baseUrl) ··· 121 278 return payload.url 122 279 } 123 280 }) 281 + 282 + describe('link service no safelink', async () => { 283 + let linkService: LinkService 284 + let baseUrl: string 285 + before(async () => { 286 + const env = readEnv() 287 + const cfg = envToCfg({ 288 + ...env, 289 + hostnames: ['test.bsky.link'], 290 + appHostname: 'test.bsky.app', 291 + dbPostgresSchema: 'link_test', 292 + dbPostgresUrl: process.env.DB_POSTGRES_URL, 293 + safelinkEnabled: false, 294 + ozoneUrl: 'http://localhost:2583', 295 + ozoneAgentHandle: 'mod-authority.test', 296 + ozoneAgentPass: 'hunter2', 297 + }) 298 + const migrateDb = Database.postgres({ 299 + url: cfg.db.url, 300 + schema: cfg.db.schema, 301 + }) 302 + await migrateDb.migrateToLatestOrThrow() 303 + await migrateDb.close() 304 + linkService = await LinkService.create(cfg) 305 + await linkService.start() 306 + const {port} = linkService.server?.address() as AddressInfo 307 + baseUrl = `http://localhost:${port}` 308 + }) 309 + after(async () => { 310 + await linkService?.destroy() 311 + }) 312 + it('Wikipedia whitelisted, url restricted. Safelink is disabled, so redirect is always safe', async () => { 313 + const urlToRedirect = 'https://en.wikipedia.org/wiki/Fight_Club' 314 + const url = new URL(`${baseUrl}/redirect`) 315 + url.searchParams.set('u', urlToRedirect) 316 + const res = await fetch(url, {redirect: 'manual'}) 317 + assert.strictEqual(res.status, 200) 318 + const html = await res.text() 319 + assert.match(html, /meta http-equiv="refresh"/) 320 + assert.match( 321 + html, 322 + new RegExp(urlToRedirect.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')), 323 + ) 324 + // No blocked-site div, always safe 325 + assert.doesNotMatch(html, /"blocked-site"/) 326 + }) 327 + 328 + it('Unsafe redirect with block rule, but safelink is disabled so redirect is always safe', async () => { 329 + const urlToRedirect = 330 + 'https://gist.github.com/MattIPv4/045239bc27b16b2bcf7a3a9a4648c08a' 331 + const url = new URL(`${baseUrl}/redirect`) 332 + url.searchParams.set('u', urlToRedirect) 333 + const res = await fetch(url, {redirect: 'manual'}) 334 + assert.strictEqual(res.status, 200) 335 + const html = await res.text() 336 + assert.match(html, /meta http-equiv="refresh"/) 337 + assert.match( 338 + html, 339 + new RegExp(urlToRedirect.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')), 340 + ) 341 + // No blocked-site div, always safe 342 + assert.doesNotMatch(html, /"blocked-site"/) 343 + }) 344 + 345 + it('Rule adjustment, safe redirect, safelink is disabled so always safe', async () => { 346 + const urlToRedirect = 'https://www.instagram.com/teamseshbones/?hl=en' 347 + const url = new URL(`${baseUrl}/redirect`) 348 + url.searchParams.set('u', urlToRedirect) 349 + const res = await fetch(url, {redirect: 'manual'}) 350 + assert.strictEqual(res.status, 200) 351 + const html = await res.text() 352 + assert.match(html, /meta http-equiv="refresh"/) 353 + assert.match( 354 + html, 355 + new RegExp(urlToRedirect.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')), 356 + ) 357 + // No blocked-site div, always safe 358 + assert.doesNotMatch(html, /"blocked-site"/) 359 + }) 360 + })
+18 -9
bskylink/tsconfig.json
··· 1 1 { 2 - "compilerOptions": { 3 - "module": "NodeNext", 4 - "esModuleInterop": true, 5 - "moduleResolution": "NodeNext", 6 - "outDir": "dist", 7 - "lib": ["ES2021.String"] 8 - }, 9 - "include": ["./src/index.ts", "./src/bin.ts"] 10 - } 2 + "compilerOptions": { 3 + "target": "ES2020", 4 + "module": "ESNext", 5 + "moduleResolution": "bundler", 6 + "allowSyntheticDefaultImports": true, 7 + "esModuleInterop": true, 8 + "skipLibCheck": true, 9 + "strict": true, 10 + "outDir": "./dist", 11 + "rootDir": "./src", 12 + "declaration": true, 13 + "declarationMap": true, 14 + "sourceMap": true 15 + }, 16 + "include": ["src/**/*"], 17 + "exclude": ["node_modules", "dist"] 18 + } 19 +
+333 -17
bskylink/yarn.lock
··· 2 2 # yarn lockfile v1 3 3 4 4 5 - "@atproto/common-web@^0.3.0": 6 - version "0.3.0" 7 - resolved "https://registry.yarnpkg.com/@atproto/common-web/-/common-web-0.3.0.tgz#36da8c2c31d8cf8a140c3c8f03223319bf4430bb" 8 - integrity sha512-67VnV6JJyX+ZWyjV7xFQMypAgDmjVaR9ZCuU/QW+mqlqI7fex2uL4Fv+7/jHadgzhuJHVd6OHOvNn0wR5WZYtA== 5 + "@atproto/api@^0.16.7": 6 + version "0.16.7" 7 + resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.16.7.tgz#eb0c520dbdaf74ba6f5ad7f9c6afe2d1389b8a0a" 8 + integrity sha512-EdVWkEgaEQm1LEiiP1fW/XXXpMNmtvT5c9+cZVRiwYc4rTB66WIJJWqmaMT/tB7nccMkFjr6FtwObq5LewWfgw== 9 + dependencies: 10 + "@atproto/common-web" "^0.4.2" 11 + "@atproto/lexicon" "^0.5.0" 12 + "@atproto/syntax" "^0.4.1" 13 + "@atproto/xrpc" "^0.7.4" 14 + await-lock "^2.2.2" 15 + multiformats "^9.9.0" 16 + tlds "^1.234.0" 17 + zod "^3.23.8" 18 + 19 + "@atproto/common-web@^0.4.2": 20 + version "0.4.2" 21 + resolved "https://registry.yarnpkg.com/@atproto/common-web/-/common-web-0.4.2.tgz#6e3add6939da93d3dfbc8f87e26dc4f57fad7259" 22 + integrity sha512-vrXwGNoFGogodjQvJDxAeP3QbGtawgZute2ed1XdRO0wMixLk3qewtikZm06H259QDJVu6voKC5mubml+WgQUw== 9 23 dependencies: 10 24 graphemer "^1.4.0" 11 25 multiformats "^9.9.0" 12 26 uint8arrays "3.0.0" 13 - zod "^3.21.4" 27 + zod "^3.23.8" 14 28 15 - "@atproto/common@^0.4.0": 16 - version "0.4.0" 17 - resolved "https://registry.yarnpkg.com/@atproto/common/-/common-0.4.0.tgz#d77696c7eb545426df727837d9ee333b429fe7ef" 18 - integrity sha512-yOXuPlCjT/OK9j+neIGYn9wkxx/AlxQSucysAF0xgwu0Ji8jAtKBf9Jv6R5ObYAjAD/kVUvEYumle+Yq/R9/7g== 29 + "@atproto/common@^0.4.11": 30 + version "0.4.11" 31 + resolved "https://registry.yarnpkg.com/@atproto/common/-/common-0.4.11.tgz#9291b7c26f8b3507e280f7ecbdf1695ab5ea62f6" 32 + integrity sha512-Knv0viYXNMfCdIE7jLUiWJKnnMfEwg+vz2epJQi8WOjqtqCFb3W/3Jn72ZiuovIfpdm13MaOiny6w2NErUQC6g== 19 33 dependencies: 20 - "@atproto/common-web" "^0.3.0" 34 + "@atproto/common-web" "^0.4.2" 21 35 "@ipld/dag-cbor" "^7.0.3" 22 36 cbor-x "^1.5.1" 23 37 iso-datestring-validator "^2.2.2" 24 38 multiformats "^9.9.0" 25 - pino "^8.15.0" 39 + pino "^8.21.0" 40 + 41 + "@atproto/lexicon@^0.5.0": 42 + version "0.5.0" 43 + resolved "https://registry.yarnpkg.com/@atproto/lexicon/-/lexicon-0.5.0.tgz#4d2be425361f9ac7f9754b8a1ccba29ddf0b9460" 44 + integrity sha512-3aAzEAy9EAPs3CxznzMhEcqDd7m3vz1eze/ya9/ThbB7yleqJIhz5GY2q76tCCwHPhn5qDDMhlA9kKV6fG23gA== 45 + dependencies: 46 + "@atproto/common-web" "^0.4.2" 47 + "@atproto/syntax" "^0.4.1" 48 + iso-datestring-validator "^2.2.2" 49 + multiformats "^9.9.0" 50 + zod "^3.23.8" 51 + 52 + "@atproto/syntax@^0.4.1": 53 + version "0.4.1" 54 + resolved "https://registry.yarnpkg.com/@atproto/syntax/-/syntax-0.4.1.tgz#f77bc610ae0914449ff3f4731861e3da429915f5" 55 + integrity sha512-CJdImtLAiFO+0z3BWTtxwk6aY5w4t8orHTMVJgkf++QRJWTxPbIFko/0hrkADB7n2EruDxDSeAgfUGehpH6ngw== 56 + 57 + "@atproto/xrpc@^0.7.4": 58 + version "0.7.4" 59 + resolved "https://registry.yarnpkg.com/@atproto/xrpc/-/xrpc-0.7.4.tgz#030342548797c1f344968c457a8659dbb60a2d60" 60 + integrity sha512-sDi68+QE1XHegTaNAndlX41Gp827pouSzSs8CyAwhrqZdsJUxE3P7TMtrA0z+zAjvxVyvzscRc0TsN/fGUGrhw== 61 + dependencies: 62 + "@atproto/lexicon" "^0.5.0" 63 + zod "^3.23.8" 26 64 27 65 "@cbor-extract/cbor-extract-darwin-arm64@2.2.0": 28 66 version "2.2.0" ··· 54 92 resolved "https://registry.yarnpkg.com/@cbor-extract/cbor-extract-win32-x64/-/cbor-extract-win32-x64-2.2.0.tgz#4b3f07af047f984c082de34b116e765cb9af975f" 55 93 integrity sha512-l2M+Z8DO2vbvADOBNLbbh9y5ST1RY5sqkWOg/58GkUPBYou/cuNZ68SGQ644f1CvZ8kcOxyZtw06+dxWHIoN/w== 56 94 95 + "@cspotcode/source-map-support@^0.8.0": 96 + version "0.8.1" 97 + resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" 98 + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== 99 + dependencies: 100 + "@jridgewell/trace-mapping" "0.3.9" 101 + 57 102 "@ipld/dag-cbor@^7.0.3": 58 103 version "7.0.3" 59 104 resolved "https://registry.yarnpkg.com/@ipld/dag-cbor/-/dag-cbor-7.0.3.tgz#aa31b28afb11a807c3d627828a344e5521ac4a1e" ··· 62 107 cborg "^1.6.0" 63 108 multiformats "^9.5.4" 64 109 110 + "@jridgewell/resolve-uri@^3.0.3": 111 + version "3.1.2" 112 + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" 113 + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== 114 + 115 + "@jridgewell/sourcemap-codec@^1.4.10": 116 + version "1.5.5" 117 + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz#6912b00d2c631c0d15ce1a7ab57cd657f2a8f8ba" 118 + integrity sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og== 119 + 120 + "@jridgewell/trace-mapping@0.3.9": 121 + version "0.3.9" 122 + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" 123 + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== 124 + dependencies: 125 + "@jridgewell/resolve-uri" "^3.0.3" 126 + "@jridgewell/sourcemap-codec" "^1.4.10" 127 + 128 + "@messageformat/core@^3.0.0": 129 + version "3.4.0" 130 + resolved "https://registry.yarnpkg.com/@messageformat/core/-/core-3.4.0.tgz#2814c23383dec7bddf535d54f2a03e410165ca9f" 131 + integrity sha512-NgCFubFFIdMWJGN5WuQhHCNmzk7QgiVfrViFxcS99j7F5dDS5EP6raR54I+2ydhe4+5/XTn/YIEppFaqqVWHsw== 132 + dependencies: 133 + "@messageformat/date-skeleton" "^1.0.0" 134 + "@messageformat/number-skeleton" "^1.0.0" 135 + "@messageformat/parser" "^5.1.0" 136 + "@messageformat/runtime" "^3.0.1" 137 + make-plural "^7.0.0" 138 + safe-identifier "^0.4.1" 139 + 140 + "@messageformat/date-skeleton@^1.0.0": 141 + version "1.1.0" 142 + resolved "https://registry.yarnpkg.com/@messageformat/date-skeleton/-/date-skeleton-1.1.0.tgz#3bad068cbf5873d14592cfc7a73dd4d8615e2739" 143 + integrity sha512-rmGAfB1tIPER+gh3p/RgA+PVeRE/gxuQ2w4snFWPF5xtb5mbWR7Cbw7wCOftcUypbD6HVoxrVdyyghPm3WzP5A== 144 + 145 + "@messageformat/number-skeleton@^1.0.0": 146 + version "1.2.0" 147 + resolved "https://registry.yarnpkg.com/@messageformat/number-skeleton/-/number-skeleton-1.2.0.tgz#e7c245c41a1b2722bc59dad68f4d454f761bc9b4" 148 + integrity sha512-xsgwcL7J7WhlHJ3RNbaVgssaIwcEyFkBqxHdcdaiJzwTZAWEOD8BuUFxnxV9k5S0qHN3v/KzUpq0IUpjH1seRg== 149 + 150 + "@messageformat/parser@^5.1.0": 151 + version "5.1.1" 152 + resolved "https://registry.yarnpkg.com/@messageformat/parser/-/parser-5.1.1.tgz#ca7d6c18e9f3f6b6bc984a465dac16da00106055" 153 + integrity sha512-3p0YRGCcTUCYvBKLIxtDDyrJ0YijGIwrTRu1DT8gIviIDZru8H23+FkY6MJBzM1n9n20CiM4VeDYuBsrrwnLjg== 154 + dependencies: 155 + moo "^0.5.1" 156 + 157 + "@messageformat/runtime@^3.0.1": 158 + version "3.0.1" 159 + resolved "https://registry.yarnpkg.com/@messageformat/runtime/-/runtime-3.0.1.tgz#94d1f6c43265c28ef7aed98ecfcc0968c6c849ac" 160 + integrity sha512-6RU5ol2lDtO8bD9Yxe6CZkl0DArdv0qkuoZC+ZwowU+cdRlVE1157wjCmlA5Rsf1Xc/brACnsZa5PZpEDfTFFg== 161 + dependencies: 162 + make-plural "^7.0.0" 163 + 164 + "@tsconfig/node10@^1.0.7": 165 + version "1.0.11" 166 + resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.11.tgz#6ee46400685f130e278128c7b38b7e031ff5b2f2" 167 + integrity sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw== 168 + 169 + "@tsconfig/node12@^1.0.7": 170 + version "1.0.11" 171 + resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" 172 + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== 173 + 174 + "@tsconfig/node14@^1.0.0": 175 + version "1.0.3" 176 + resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" 177 + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== 178 + 179 + "@tsconfig/node16@^1.0.2": 180 + version "1.0.4" 181 + resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" 182 + integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== 183 + 184 + "@types/body-parser@*", "@types/body-parser@^1.19.5": 185 + version "1.19.6" 186 + resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.6.tgz#1859bebb8fd7dac9918a45d54c1971ab8b5af474" 187 + integrity sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g== 188 + dependencies: 189 + "@types/connect" "*" 190 + "@types/node" "*" 191 + 192 + "@types/connect@*": 193 + version "3.4.38" 194 + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz#5ba7f3bc4fbbdeaff8dded952e5ff2cc53f8d858" 195 + integrity sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug== 196 + dependencies: 197 + "@types/node" "*" 198 + 65 199 "@types/cors@^2.8.17": 66 200 version "2.8.17" 67 201 resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.17.tgz#5d718a5e494a8166f569d986794e49c48b216b2b" ··· 74 208 resolved "https://registry.yarnpkg.com/@types/escape-html/-/escape-html-1.0.4.tgz#dc7c166b76c7b03b27e32f80edf01d91eb5d9af2" 75 209 integrity sha512-qZ72SFTgUAZ5a7Tj6kf2SHLetiH5S6f8G5frB2SPQ3EyF02kxdyBFf4Tz4banE3xCgGnKgWLt//a6VuYHKYJTg== 76 210 211 + "@types/express-serve-static-core@^4.17.33": 212 + version "4.19.6" 213 + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz#e01324c2a024ff367d92c66f48553ced0ab50267" 214 + integrity sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A== 215 + dependencies: 216 + "@types/node" "*" 217 + "@types/qs" "*" 218 + "@types/range-parser" "*" 219 + "@types/send" "*" 220 + 221 + "@types/express@^4.17.21": 222 + version "4.17.23" 223 + resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.23.tgz#35af3193c640bfd4d7fe77191cd0ed411a433bef" 224 + integrity sha512-Crp6WY9aTYP3qPi2wGDo9iUe/rceX01UMhnF1jmwDcKCFM6cx7YhGP/Mpr3y9AASpfHixIG0E6azCcL5OcDHsQ== 225 + dependencies: 226 + "@types/body-parser" "*" 227 + "@types/express-serve-static-core" "^4.17.33" 228 + "@types/qs" "*" 229 + "@types/serve-static" "*" 230 + 231 + "@types/http-errors@*": 232 + version "2.0.5" 233 + resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.5.tgz#5b749ab2b16ba113423feb1a64a95dcd30398472" 234 + integrity sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg== 235 + 236 + "@types/i18n@^0.13.12": 237 + version "0.13.12" 238 + resolved "https://registry.yarnpkg.com/@types/i18n/-/i18n-0.13.12.tgz#b457715766c63d8ffdfc51dd4fc1f72728e9d38f" 239 + integrity sha512-iAd2QjKh+0ToBXocmCS3m38GskiaGzmSV1MTQz2GaOraqSqBiLf46J7u3EGINl+st+Uk4lO3OL7QyIjTJlrWIg== 240 + 241 + "@types/mime@^1": 242 + version "1.3.5" 243 + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690" 244 + integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w== 245 + 77 246 "@types/node@*": 78 247 version "20.14.2" 79 248 resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.2.tgz#a5f4d2bcb4b6a87bffcaa717718c5a0f208f4a18" ··· 90 259 pg-protocol "*" 91 260 pg-types "^4.0.1" 92 261 262 + "@types/qs@*": 263 + version "6.14.0" 264 + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.14.0.tgz#d8b60cecf62f2db0fb68e5e006077b9178b85de5" 265 + integrity sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ== 266 + 267 + "@types/range-parser@*": 268 + version "1.2.7" 269 + resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb" 270 + integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== 271 + 272 + "@types/send@*": 273 + version "0.17.5" 274 + resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.5.tgz#d991d4f2b16f2b1ef497131f00a9114290791e74" 275 + integrity sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w== 276 + dependencies: 277 + "@types/mime" "^1" 278 + "@types/node" "*" 279 + 280 + "@types/serve-static@*": 281 + version "1.15.8" 282 + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.8.tgz#8180c3fbe4a70e8f00b9f70b9ba7f08f35987877" 283 + integrity sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg== 284 + dependencies: 285 + "@types/http-errors" "*" 286 + "@types/node" "*" 287 + "@types/send" "*" 288 + 93 289 abort-controller@^3.0.0: 94 290 version "3.0.0" 95 291 resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" ··· 105 301 mime-types "~2.1.34" 106 302 negotiator "0.6.3" 107 303 304 + acorn-walk@^8.1.1: 305 + version "8.3.4" 306 + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.4.tgz#794dd169c3977edf4ba4ea47583587c5866236b7" 307 + integrity sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g== 308 + dependencies: 309 + acorn "^8.11.0" 310 + 311 + acorn@^8.11.0, acorn@^8.4.1: 312 + version "8.15.0" 313 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz#a360898bc415edaac46c8241f6383975b930b816" 314 + integrity sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg== 315 + 316 + arg@^4.1.0: 317 + version "4.1.3" 318 + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" 319 + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== 320 + 108 321 array-flatten@1.1.1: 109 322 version "1.1.1" 110 323 resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" ··· 114 327 version "1.0.0" 115 328 resolved "https://registry.yarnpkg.com/atomic-sleep/-/atomic-sleep-1.0.0.tgz#eb85b77a601fc932cfe432c5acd364a9e2c9075b" 116 329 integrity sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ== 330 + 331 + await-lock@^2.2.2: 332 + version "2.2.2" 333 + resolved "https://registry.yarnpkg.com/await-lock/-/await-lock-2.2.2.tgz#a95a9b269bfd2f69d22b17a321686f551152bcef" 334 + integrity sha512-aDczADvlvTGajTDjcjpJMqRkOF6Qdz3YbPZm/PyW6tKPkx2hlYBzxMhEywM/tU72HrVZjgl5VCdRuMlA7pZ8Gw== 117 335 118 336 base64-js@^1.3.1: 119 337 version "1.5.1" ··· 223 441 object-assign "^4" 224 442 vary "^1" 225 443 444 + create-require@^1.1.0: 445 + version "1.1.1" 446 + resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" 447 + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== 448 + 226 449 debug@2.6.9: 227 450 version "2.6.9" 228 451 resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 229 452 integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 230 453 dependencies: 231 454 ms "2.0.0" 455 + 456 + debug@^4.3.3: 457 + version "4.4.1" 458 + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.1.tgz#e5a8bc6cbc4c6cd3e64308b0693a3d4fa550189b" 459 + integrity sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ== 460 + dependencies: 461 + ms "^2.1.3" 232 462 233 463 define-data-property@^1.1.4: 234 464 version "1.1.4" ··· 258 488 version "2.0.3" 259 489 resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.3.tgz#f0cd503b40f9939b894697d19ad50895e30cf700" 260 490 integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw== 491 + 492 + diff@^4.0.1: 493 + version "4.0.2" 494 + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" 495 + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== 261 496 262 497 ee-first@1.1.1: 263 498 version "1.1.1" ··· 446 681 roarr "^7.0.4" 447 682 type-fest "^2.3.3" 448 683 684 + i18n@^0.15.1: 685 + version "0.15.1" 686 + resolved "https://registry.yarnpkg.com/i18n/-/i18n-0.15.1.tgz#68fb8993c461cc440bc2485d82f72019f2b92de8" 687 + integrity sha512-yue187t8MqUPMHdKjiZGrX+L+xcUsDClGO0Cz4loaKUOK9WrGw5pgan4bv130utOwX7fHE9w2iUeHFalVQWkXA== 688 + dependencies: 689 + "@messageformat/core" "^3.0.0" 690 + debug "^4.3.3" 691 + fast-printf "^1.6.9" 692 + make-plural "^7.0.0" 693 + math-interval-parser "^2.0.1" 694 + mustache "^4.2.0" 695 + 449 696 iconv-lite@0.4.24: 450 697 version "0.4.24" 451 698 resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" ··· 478 725 resolved "https://registry.yarnpkg.com/kysely/-/kysely-0.27.3.tgz#6cc6c757040500b43c4ac596cdbb12be400ee276" 479 726 integrity sha512-lG03Ru+XyOJFsjH3OMY6R/9U38IjDPfnOfDgO3ynhbDr+Dz8fak+X6L62vqu3iybQnj+lG84OttBuU9KY3L9kA== 480 727 728 + lru-cache@^11.1.0: 729 + version "11.1.0" 730 + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.1.0.tgz#afafb060607108132dbc1cf8ae661afb69486117" 731 + integrity sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A== 732 + 733 + make-error@^1.1.1: 734 + version "1.3.6" 735 + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 736 + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 737 + 738 + make-plural@^7.0.0: 739 + version "7.4.0" 740 + resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-7.4.0.tgz#fa6990dd550dea4de6b20163f74e5ed83d8a8d6d" 741 + integrity sha512-4/gC9KVNTV6pvYg2gFeQYTW3mWaoJt7WZE5vrp1KnQDgW92JtYZnzmZT81oj/dUTqAIu0ufI2x3dkgu3bB1tYg== 742 + 743 + math-interval-parser@^2.0.1: 744 + version "2.0.1" 745 + resolved "https://registry.yarnpkg.com/math-interval-parser/-/math-interval-parser-2.0.1.tgz#e22cd6d15a0a7f4c03aec560db76513da615bed4" 746 + integrity sha512-VmlAmb0UJwlvMyx8iPhXUDnVW1F9IrGEd9CIOmv+XL8AErCUUuozoDMrgImvnYt2A+53qVX/tPW6YJurMKYsvA== 747 + 481 748 media-typer@0.3.0: 482 749 version "0.3.0" 483 750 resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" ··· 510 777 resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 511 778 integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 512 779 780 + moo@^0.5.1: 781 + version "0.5.2" 782 + resolved "https://registry.yarnpkg.com/moo/-/moo-0.5.2.tgz#f9fe82473bc7c184b0d32e2215d3f6e67278733c" 783 + integrity sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q== 784 + 513 785 ms@2.0.0: 514 786 version "2.0.0" 515 787 resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 516 788 integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== 517 789 518 - ms@2.1.3: 790 + ms@2.1.3, ms@^2.1.3: 519 791 version "2.1.3" 520 792 resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 521 793 integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== ··· 530 802 resolved "https://registry.yarnpkg.com/multiformats/-/multiformats-9.9.0.tgz#c68354e7d21037a8f1f8833c8ccd68618e8f1d37" 531 803 integrity sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg== 532 804 805 + mustache@^4.2.0: 806 + version "4.2.0" 807 + resolved "https://registry.yarnpkg.com/mustache/-/mustache-4.2.0.tgz#e5892324d60a12ec9c2a73359edca52972bf6f64" 808 + integrity sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ== 809 + 533 810 negotiator@0.6.3: 534 811 version "0.6.3" 535 812 resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" ··· 690 967 resolved "https://registry.yarnpkg.com/pino-std-serializers/-/pino-std-serializers-7.0.0.tgz#7c625038b13718dbbd84ab446bd673dc52259e3b" 691 968 integrity sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA== 692 969 693 - pino@^8.15.0: 970 + pino@^8.21.0: 694 971 version "8.21.0" 695 972 resolved "https://registry.yarnpkg.com/pino/-/pino-8.21.0.tgz#e1207f3675a2722940d62da79a7a55a98409f00d" 696 973 integrity sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q== ··· 848 1125 resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 849 1126 integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 850 1127 1128 + safe-identifier@^0.4.1: 1129 + version "0.4.2" 1130 + resolved "https://registry.yarnpkg.com/safe-identifier/-/safe-identifier-0.4.2.tgz#cf6bfca31c2897c588092d1750d30ef501d59fcb" 1131 + integrity sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w== 1132 + 851 1133 safe-stable-stringify@^2.3.1, safe-stable-stringify@^2.4.3: 852 1134 version "2.4.3" 853 1135 resolved "https://registry.yarnpkg.com/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz#138c84b6f6edb3db5f8ef3ef7115b8f55ccbf886" ··· 964 1246 dependencies: 965 1247 real-require "^0.2.0" 966 1248 1249 + tlds@^1.234.0: 1250 + version "1.260.0" 1251 + resolved "https://registry.yarnpkg.com/tlds/-/tlds-1.260.0.tgz#666c2584cf627b4296e888b799ec341be42821ac" 1252 + integrity sha512-78+28EWBhCEE7qlyaHA9OR3IPvbCLiDh3Ckla593TksfFc9vfTsgvH7eS+dr3o9qr31gwGbogcI16yN91PoRjQ== 1253 + 967 1254 toidentifier@1.0.1: 968 1255 version "1.0.1" 969 1256 resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" 970 1257 integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== 971 1258 1259 + ts-node@^10.9.2: 1260 + version "10.9.2" 1261 + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.2.tgz#70f021c9e185bccdca820e26dc413805c101c71f" 1262 + integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ== 1263 + dependencies: 1264 + "@cspotcode/source-map-support" "^0.8.0" 1265 + "@tsconfig/node10" "^1.0.7" 1266 + "@tsconfig/node12" "^1.0.7" 1267 + "@tsconfig/node14" "^1.0.0" 1268 + "@tsconfig/node16" "^1.0.2" 1269 + acorn "^8.4.1" 1270 + acorn-walk "^8.1.1" 1271 + arg "^4.1.0" 1272 + create-require "^1.1.0" 1273 + diff "^4.0.1" 1274 + make-error "^1.1.1" 1275 + v8-compile-cache-lib "^3.0.1" 1276 + yn "3.1.1" 1277 + 972 1278 type-fest@^2.3.3: 973 1279 version "2.19.0" 974 1280 resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" ··· 1016 1322 resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 1017 1323 integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== 1018 1324 1325 + v8-compile-cache-lib@^3.0.1: 1326 + version "3.0.1" 1327 + resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" 1328 + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== 1329 + 1019 1330 vary@^1, vary@~1.1.2: 1020 1331 version "1.1.2" 1021 1332 resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" ··· 1026 1337 resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 1027 1338 integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 1028 1339 1029 - zod@^3.21.4: 1030 - version "3.23.8" 1031 - resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d" 1032 - integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== 1340 + yn@3.1.1: 1341 + version "3.1.1" 1342 + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" 1343 + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== 1344 + 1345 + zod@^3.23.8: 1346 + version "3.25.76" 1347 + resolved "https://registry.yarnpkg.com/zod/-/zod-3.25.76.tgz#26841c3f6fd22a6a2760e7ccb719179768471e34" 1348 + integrity sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==
+2 -13
src/components/dialogs/GifSelect.tsx
··· 146 146 a.flex_row, 147 147 a.align_center, 148 148 !gtMobile && web(a.gap_md), 149 + a.pb_sm, 150 + t.atoms.bg, 149 151 ]}> 150 - {/* cover top corners */} 151 - <View 152 - style={[ 153 - a.absolute, 154 - a.inset_0, 155 - { 156 - borderBottomLeftRadius: 8, 157 - borderBottomRightRadius: 8, 158 - }, 159 - t.atoms.bg, 160 - ]} 161 - /> 162 - 163 152 {!gtMobile && isWeb && ( 164 153 <Button 165 154 size="small"
+4 -17
src/components/dialogs/StarterPackDialog.tsx
··· 78 78 <Dialog.Outer control={control}> 79 79 <Dialog.Handle /> 80 80 <StarterPackList 81 - control={control} 82 81 onStartWizard={wrappedNavToWizard} 83 82 targetDid={targetDid} 84 83 enabled={enabled} ··· 122 121 } 123 122 124 123 function StarterPackList({ 125 - control, 126 124 onStartWizard, 127 125 targetDid, 128 126 enabled, 129 127 }: { 130 - control: Dialog.DialogControlProps 131 128 onStartWizard: () => void 132 129 targetDid: string 133 130 enabled?: boolean 134 131 }) { 132 + const control = Dialog.useDialogContext() 135 133 const {_} = useLingui() 136 134 137 135 const { 138 136 data, 139 - refetch, 140 137 isError, 141 138 isLoading, 142 139 hasNextPage, ··· 147 144 const membershipItems = 148 145 data?.pages.flatMap(page => page.starterPacksWithMembership) || [] 149 146 150 - const _onRefresh = useCallback(async () => { 151 - try { 152 - await refetch() 153 - } catch (err) { 154 - // Error handling is optional since this is just a refresh 155 - } 156 - }, [refetch]) 157 - 158 - const _onEndReached = useCallback(async () => { 147 + const onEndReached = useCallback(async () => { 159 148 if (isFetchingNextPage || !hasNextPage || isError) return 160 149 try { 161 150 await fetchNextPage() ··· 239 228 ? () => 'starter_pack_dialog_loader' 240 229 : (item: StarterPackWithMembership) => item.starterPack.uri 241 230 } 242 - refreshing={false} 243 - onRefresh={_onRefresh} 244 - onEndReached={_onEndReached} 231 + onEndReached={onEndReached} 245 232 onEndReachedThreshold={0.1} 246 233 ListHeaderComponent={listHeader} 247 234 ListEmptyComponent={<Empty onStartWizard={onStartWizard} />} ··· 382 369 383 370 <Button 384 371 label={isInPack ? _(msg`Remove`) : _(msg`Add`)} 385 - color={isInPack ? 'secondary' : 'primary'} 372 + color={isInPack ? 'secondary' : 'primary_subtle'} 386 373 size="tiny" 387 374 disabled={isPendingRefresh} 388 375 onPress={handleToggleMembership}>
+1
src/components/dms/MessageItem.tsx
··· 213 213 interactiveStyle={a.underline} 214 214 enableTags 215 215 emojiMultiplier={3} 216 + shouldProxyLinks={true} 216 217 /> 217 218 </View> 218 219 )}
+4 -6
src/lib/api/feed/author.ts
··· 1 1 import { 2 2 AppBskyFeedDefs, 3 - AppBskyFeedGetAuthorFeed as GetAuthorFeed, 4 - BskyAgent, 3 + type AppBskyFeedGetAuthorFeed as GetAuthorFeed, 4 + type BskyAgent, 5 5 } from '@atproto/api' 6 6 7 - import {FeedAPI, FeedAPIResponse} from './types' 7 + import {type FeedAPI, type FeedAPIResponse} from './types' 8 8 9 9 export class AuthorFeedAPI implements FeedAPI { 10 10 agent: BskyAgent ··· 23 23 24 24 get params() { 25 25 const params = {...this._params} 26 - params.includePins = 27 - params.filter === 'posts_with_replies' || 28 - params.filter === 'posts_and_author_threads' 26 + params.includePins = params.filter === 'posts_and_author_threads' 29 27 return params 30 28 } 31 29
+1 -1
src/lib/hooks/useCleanError.ts
··· 42 42 } 43 43 } 44 44 45 - if (raw.includes('Bad token scope')) { 45 + if (raw.includes('Bad token scope') || raw.includes('Bad token method')) { 46 46 return { 47 47 raw, 48 48 clean: _(
+3 -1
src/lib/media/picker.shared.ts
··· 23 23 selectionLimit: 1, 24 24 ...opts, 25 25 legacy: true, 26 + preferredAssetRepresentationMode: 27 + UIImagePickerPreferredAssetRepresentationMode.Automatic, 26 28 }) 27 29 28 30 return (response.assets ?? []) ··· 54 56 base64: isWeb, 55 57 selectionLimit: isIOS ? selectionCountRemaining : undefined, 56 58 preferredAssetRepresentationMode: 57 - UIImagePickerPreferredAssetRepresentationMode.Current, 59 + UIImagePickerPreferredAssetRepresentationMode.Automatic, 58 60 videoMaxDuration: VIDEO_MAX_DURATION_MS / 1000, 59 61 }) 60 62 }
+1 -1
src/lib/strings/errors.ts
··· 17 17 ) { 18 18 return t`The server appears to be experiencing issues. Please try again in a few moments.` 19 19 } 20 - if (str.includes('Bad token scope')) { 20 + if (str.includes('Bad token scope') || str.includes('Bad token method')) { 21 21 return t`This feature is not available while using an App Password. Please sign in with your main password.` 22 22 } 23 23 if (str.startsWith('Error: ')) {
+33 -33
src/locale/locales/an/messages.po
··· 8 8 "Language: an\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Aragonese\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Anyadir" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Anyadir a listas" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Anyadiu a lista" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Fe clic pa ubrir lo menu de {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Fe clic pa reintentar mensache fallido" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Continar" ··· 2192 2192 msgstr "Continar filo..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Crear" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Crea un avatar" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Crea un reporte de {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Error en ninviar" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Da-le una cara a lo tuyo perfil" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Aduya" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Aduya a que las personas sepan que no yes un bot puyando una foto u creando un avatar." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "agora" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Agora" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Falta lo texto alternativo d'uno u mas videos." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Nomás s'admite fichers .jpg y .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Nomás s'admite fichers d'imachen" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Ubierto" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Ubrir lo creyador de avatares" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Eliminada d'as mías canals alzadas" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Reintenta la zaguera acción, que presentó una error" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Actualizando..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Puya una foto en cuenta" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "No tiens garra lista." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+90 -90
src/locale/locales/ar/messages.po
··· 8 8 "Language: ar_SA\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Arabic, Saudi Arabia\n" 14 14 "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 151 151 msgid "{0} is not a valid URL" 152 152 msgstr "" 153 153 154 - #: src/screens/Signup/StepHandle/index.tsx:186 154 + #: src/screens/Signup/StepHandle/index.tsx:189 155 155 msgid "{0} is not available" 156 156 msgstr "" 157 157 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "" ··· 723 723 msgstr "" 724 724 725 725 #. Accessibility label for button in composer to add images, a video, or a GIF to a post 726 - #: src/view/com/composer/SelectMediaButton.tsx:482 726 + #: src/view/com/composer/SelectMediaButton.tsx:468 727 727 msgid "Add media to post" 728 728 msgstr "" 729 729 ··· 782 782 msgid "Add to lists" 783 783 msgstr "" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1043 1043 msgid "and" 1044 1044 msgstr "" 1045 1045 1046 - #: src/screens/Onboarding/index.tsx:43 1046 + #: src/screens/Onboarding/index.tsx:45 1047 1047 #: src/screens/Onboarding/state.ts:102 1048 1048 msgid "Animals" 1049 1049 msgstr "" ··· 1219 1219 msgid "Are you writing in <0>{suggestedLanguageName}</0>?" 1220 1220 msgstr "" 1221 1221 1222 - #: src/screens/Onboarding/index.tsx:37 1222 + #: src/screens/Onboarding/index.tsx:39 1223 1223 #: src/screens/Onboarding/state.ts:103 1224 1224 msgid "Art" 1225 1225 msgstr "" ··· 1487 1487 msgid "Blur images and filter from feeds" 1488 1488 msgstr "" 1489 1489 1490 - #: src/screens/Onboarding/index.tsx:44 1490 + #: src/screens/Onboarding/index.tsx:46 1491 1491 #: src/screens/Onboarding/state.ts:104 1492 1492 msgid "Books" 1493 1493 msgstr "" ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "" 1885 1885 1886 - #: src/screens/Onboarding/index.tsx:46 1886 + #: src/screens/Onboarding/index.tsx:48 1887 1887 msgid "Climate" 1888 1888 msgstr "" 1889 1889 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2014 2014 msgid "Color theme" 2015 2015 msgstr "" 2016 2016 2017 - #: src/screens/Onboarding/index.tsx:52 2017 + #: src/screens/Onboarding/index.tsx:54 2018 2018 #: src/screens/Onboarding/state.ts:105 2019 2019 msgid "Comedy" 2020 2020 msgstr "" 2021 2021 2022 - #: src/screens/Onboarding/index.tsx:38 2022 + #: src/screens/Onboarding/index.tsx:40 2023 2023 #: src/screens/Onboarding/state.ts:106 2024 2024 msgid "Comics" 2025 2025 msgstr "" ··· 2031 2031 msgstr "" 2032 2032 2033 2033 #: src/screens/Onboarding/StepFinished.tsx:473 2034 - #: src/screens/Onboarding/StepFinished.tsx:587 2034 + #: src/screens/Onboarding/StepFinished.tsx:588 2035 2035 msgid "Complete onboarding and start using your account" 2036 2036 msgstr "" 2037 2037 ··· 2173 2173 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 - #: src/screens/Onboarding/StepInterests/index.tsx:253 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:277 2176 + #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:278 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "" ··· 2191 2191 msgid "Continue thread..." 2192 2192 msgstr "" 2193 2193 2194 - #: src/screens/Onboarding/StepInterests/index.tsx:250 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:274 2194 + #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:275 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2212 2212 msgid "Conversation deleted" 2213 2213 msgstr "" 2214 2214 2215 - #: src/screens/Onboarding/index.tsx:55 2215 + #: src/screens/Onboarding/index.tsx:57 2216 2216 msgid "Cooking" 2217 2217 msgstr "" 2218 2218 ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:291 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:293 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2457 2457 msgid "Creator has been blocked" 2458 2458 msgstr "" 2459 2459 2460 - #: src/screens/Onboarding/index.tsx:40 2460 + #: src/screens/Onboarding/index.tsx:42 2461 2461 #: src/screens/Onboarding/state.ts:107 2462 2462 msgid "Culture" 2463 2463 msgstr "" ··· 2734 2734 msgid "Discover new custom feeds" 2735 2735 msgstr "" 2736 2736 2737 - #: src/screens/Search/Explore.tsx:434 2737 + #: src/screens/Search/Explore.tsx:435 2738 2738 #: src/view/screens/Feeds.tsx:730 2739 2739 msgid "Discover New Feeds" 2740 2740 msgstr "" ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:329 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:332 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:334 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3005 3005 msgid "Edit your starter pack" 3006 3006 msgstr "" 3007 3007 3008 - #: src/screens/Onboarding/index.tsx:45 3008 + #: src/screens/Onboarding/index.tsx:47 3009 3009 #: src/screens/Onboarding/state.ts:109 3010 3010 msgid "Education" 3011 3011 msgstr "" ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3434 3434 msgid "Failed to load conversations" 3435 3435 msgstr "" 3436 3436 3437 - #: src/screens/Search/Explore.tsx:470 3438 - #: src/screens/Search/Explore.tsx:522 3439 - #: src/screens/Search/Explore.tsx:560 3440 - #: src/screens/Search/Explore.tsx:599 3437 + #: src/screens/Search/Explore.tsx:471 3438 + #: src/screens/Search/Explore.tsx:523 3439 + #: src/screens/Search/Explore.tsx:561 3440 + #: src/screens/Search/Explore.tsx:600 3441 3441 msgid "Failed to load feeds preferences" 3442 3442 msgstr "" 3443 3443 ··· 3467 3467 msgid "Failed to load preference." 3468 3468 msgstr "" 3469 3469 3470 - #: src/screens/Search/Explore.tsx:463 3471 - #: src/screens/Search/Explore.tsx:515 3472 - #: src/screens/Search/Explore.tsx:553 3473 - #: src/screens/Search/Explore.tsx:592 3470 + #: src/screens/Search/Explore.tsx:464 3471 + #: src/screens/Search/Explore.tsx:516 3472 + #: src/screens/Search/Explore.tsx:554 3473 + #: src/screens/Search/Explore.tsx:593 3474 3474 msgid "Failed to load suggested feeds" 3475 3475 msgstr "" 3476 3476 3477 - #: src/screens/Search/Explore.tsx:373 3477 + #: src/screens/Search/Explore.tsx:374 3478 3478 msgid "Failed to load suggested follows" 3479 3479 msgstr "" 3480 3480 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "" 3519 3519 ··· 3662 3662 msgstr "" 3663 3663 3664 3664 #: src/screens/Onboarding/StepFinished.tsx:479 3665 - #: src/screens/Onboarding/StepFinished.tsx:590 3665 + #: src/screens/Onboarding/StepFinished.tsx:591 3666 3666 msgid "Finalizing" 3667 3667 msgstr "" 3668 3668 ··· 3690 3690 msgid "Finish" 3691 3691 msgstr "" 3692 3692 3693 - #: src/screens/Onboarding/index.tsx:49 3693 + #: src/screens/Onboarding/index.tsx:51 3694 3694 msgid "Fitness" 3695 3695 msgstr "" 3696 3696 ··· 3853 3853 msgid "Font size" 3854 3854 msgstr "" 3855 3855 3856 - #: src/screens/Onboarding/index.tsx:54 3856 + #: src/screens/Onboarding/index.tsx:56 3857 3857 #: src/screens/Onboarding/state.ts:110 3858 3858 msgid "Food" 3859 3859 msgstr "" ··· 4576 4576 msgid "Join the conversation" 4577 4577 msgstr "" 4578 4578 4579 - #: src/screens/Onboarding/index.tsx:35 4579 + #: src/screens/Onboarding/index.tsx:37 4580 4580 #: src/screens/Onboarding/state.ts:112 4581 4581 msgid "Journalism" 4582 4582 msgstr "" ··· 4758 4758 msgstr "" 4759 4759 4760 4760 #: src/screens/Onboarding/StepFinished.tsx:481 4761 - #: src/screens/Onboarding/StepFinished.tsx:590 4761 + #: src/screens/Onboarding/StepFinished.tsx:591 4762 4762 msgid "Let's go!" 4763 4763 msgstr "" 4764 4764 ··· 4943 4943 msgid "Live link" 4944 4944 msgstr "" 4945 4945 4946 - #: src/screens/Search/Explore.tsx:86 4946 + #: src/screens/Search/Explore.tsx:87 4947 4947 msgid "Load more" 4948 4948 msgstr "" 4949 4949 4950 - #: src/screens/Search/Explore.tsx:504 4951 - #: src/screens/Search/Explore.tsx:581 4950 + #: src/screens/Search/Explore.tsx:505 4951 + #: src/screens/Search/Explore.tsx:582 4952 4952 msgid "Load more suggested feeds" 4953 4953 msgstr "" 4954 4954 ··· 5344 5344 msgid "Name or Description Violates Community Standards" 5345 5345 msgstr "" 5346 5346 5347 - #: src/screens/Onboarding/index.tsx:36 5347 + #: src/screens/Onboarding/index.tsx:38 5348 5348 #: src/screens/Onboarding/state.ts:115 5349 5349 msgid "Nature" 5350 5350 msgstr "" ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5498 5498 msgid "Newest replies first" 5499 5499 msgstr "" 5500 5500 5501 - #: src/screens/Onboarding/index.tsx:34 5501 + #: src/screens/Onboarding/index.tsx:36 5502 5502 #: src/screens/Onboarding/state.ts:116 5503 5503 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:238 5504 5504 msgid "News" ··· 5620 5620 msgid "No results" 5621 5621 msgstr "" 5622 5622 5623 - #: src/screens/Search/Explore.tsx:786 5623 + #: src/screens/Search/Explore.tsx:787 5624 5624 msgid "No results for \"{0}\"." 5625 5625 msgstr "" 5626 5626 ··· 5638 5638 msgid "No results found for {query}" 5639 5639 msgstr "" 5640 5640 5641 - #: src/screens/Search/Explore.tsx:790 5641 + #: src/screens/Search/Explore.tsx:791 5642 5642 msgid "No results." 5643 5643 msgstr "" 5644 5644 ··· 5750 5750 msgid "now" 5751 5751 msgstr "" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "" 5756 5756 ··· 5815 5815 msgid "One or more images is missing alt text." 5816 5816 msgstr "" 5817 5817 5818 - #: src/view/com/composer/SelectMediaButton.tsx:390 5818 + #: src/view/com/composer/SelectMediaButton.tsx:387 5819 5819 msgid "One or more of your selected files are not supported." 5820 5820 msgstr "" 5821 5821 5822 - #: src/view/com/composer/SelectMediaButton.tsx:413 5822 + #: src/view/com/composer/SelectMediaButton.tsx:410 5823 5823 msgid "One or more of your selected files are too large. Maximum size is 100 MB." 5824 5824 msgstr "" 5825 5825 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:28 5844 + #: src/lib/media/picker.shared.ts:31 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:285 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:287 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "" 5872 5872 ··· 5976 5976 msgstr "" 5977 5977 5978 5978 #. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. 5979 - #: src/view/com/composer/SelectMediaButton.tsx:488 5979 + #: src/view/com/composer/SelectMediaButton.tsx:474 5980 5980 msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." 5981 5981 msgstr "" 5982 5982 ··· 6157 6157 msgid "Person toggle" 6158 6158 msgstr "" 6159 6159 6160 - #: src/screens/Onboarding/index.tsx:42 6160 + #: src/screens/Onboarding/index.tsx:44 6161 6161 #: src/screens/Onboarding/state.ts:117 6162 6162 msgid "Pets" 6163 6163 msgstr "" ··· 6384 6384 msgid "Please write your message below:" 6385 6385 msgstr "" 6386 6386 6387 - #: src/screens/Onboarding/index.tsx:48 6387 + #: src/screens/Onboarding/index.tsx:50 6388 6388 #: src/screens/Onboarding/state.ts:119 6389 6389 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:232 6390 6390 msgid "Politics" ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 7377 7377 msgid "Say hello!" 7378 7378 msgstr "" 7379 7379 7380 - #: src/screens/Onboarding/index.tsx:47 7380 + #: src/screens/Onboarding/index.tsx:49 7381 7381 #: src/screens/Onboarding/state.ts:120 7382 7382 msgid "Science" 7383 7383 msgstr "" ··· 7438 7438 msgid "Search for feeds that you want to suggest to others." 7439 7439 msgstr "" 7440 7440 7441 - #: src/screens/Search/Explore.tsx:360 7441 + #: src/screens/Search/Explore.tsx:361 7442 7442 msgid "Search for more accounts" 7443 7443 msgstr "" 7444 7444 7445 - #: src/screens/Search/Explore.tsx:437 7445 + #: src/screens/Search/Explore.tsx:438 7446 7446 msgid "Search for more feeds" 7447 7447 msgstr "" 7448 7448 ··· 7665 7665 msgid "Select your preferred notification channels" 7666 7666 msgstr "" 7667 7667 7668 - #: src/view/com/composer/SelectMediaButton.tsx:393 7668 + #: src/view/com/composer/SelectMediaButton.tsx:390 7669 7669 msgid "Selecting multiple media types is not supported." 7670 7670 msgstr "" 7671 7671 ··· 8123 8123 msgid "Snoozes the reminder" 8124 8124 msgstr "" 8125 8125 8126 - #: src/screens/Onboarding/index.tsx:51 8126 + #: src/screens/Onboarding/index.tsx:53 8127 8127 #: src/screens/Onboarding/state.ts:108 8128 8128 msgid "Software Dev" 8129 8129 msgstr "" ··· 8219 8219 msgid "Spam; excessive mentions or replies" 8220 8220 msgstr "" 8221 8221 8222 - #: src/screens/Onboarding/index.tsx:41 8222 + #: src/screens/Onboarding/index.tsx:43 8223 8223 #: src/screens/Onboarding/state.ts:121 8224 8224 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:230 8225 8225 msgid "Sports" ··· 8270 8270 msgid "Starter pack is invalid" 8271 8271 msgstr "" 8272 8272 8273 - #: src/screens/Search/Explore.tsx:628 8273 + #: src/screens/Search/Explore.tsx:629 8274 8274 #: src/view/screens/Profile.tsx:231 8275 8275 msgid "Starter Packs" 8276 8276 msgstr "" ··· 8357 8357 msgid "Successfully verified" 8358 8358 msgstr "" 8359 8359 8360 - #: src/screens/Search/Explore.tsx:357 8360 + #: src/screens/Search/Explore.tsx:358 8361 8361 msgid "Suggested Accounts" 8362 8362 msgstr "" 8363 8363 ··· 8460 8460 msgid "Teach our algorithm what you like" 8461 8461 msgstr "" 8462 8462 8463 - #: src/screens/Onboarding/index.tsx:50 8463 + #: src/screens/Onboarding/index.tsx:52 8464 8464 #: src/screens/Onboarding/state.ts:122 8465 8465 msgid "Tech" 8466 8466 msgstr "" ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:289 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:291 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "" 9395 9395 ··· 9516 9516 msgid "User list updated" 9517 9517 msgstr "" 9518 9518 9519 - #: src/screens/Signup/StepHandle/index.tsx:231 9519 + #: src/screens/Signup/StepHandle/index.tsx:234 9520 9520 msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" 9521 9521 msgstr "" 9522 9522 9523 - #: src/screens/Signup/StepHandle/index.tsx:215 9523 + #: src/screens/Signup/StepHandle/index.tsx:218 9524 9524 msgid "Username cannot begin or end with a hyphen" 9525 9525 msgstr "" 9526 9526 9527 - #: src/screens/Signup/StepHandle/index.tsx:219 9527 + #: src/screens/Signup/StepHandle/index.tsx:222 9528 9528 msgid "Username must only contain letters (a-z), numbers, and hyphens" 9529 9529 msgstr "" 9530 9530 ··· 9665 9665 msgid "Video from {0}: {text}" 9666 9666 msgstr "" 9667 9667 9668 - #: src/screens/Onboarding/index.tsx:53 9668 + #: src/screens/Onboarding/index.tsx:55 9669 9669 #: src/screens/Onboarding/state.ts:111 9670 9670 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:234 9671 9671 msgid "Video Games" ··· 9699 9699 msgid "Videos" 9700 9700 msgstr "" 9701 9701 9702 - #: src/view/com/composer/SelectMediaButton.tsx:407 9702 + #: src/view/com/composer/SelectMediaButton.tsx:404 9703 9703 msgid "Videos must be less than 3 minutes long." 9704 9704 msgstr "" 9705 9705 ··· 10123 10123 msgid "Write your reply" 10124 10124 msgstr "" 10125 10125 10126 - #: src/screens/Onboarding/index.tsx:39 10126 + #: src/screens/Onboarding/index.tsx:41 10127 10127 #: src/screens/Onboarding/state.ts:124 10128 10128 msgid "Writers" 10129 10129 msgstr "" ··· 10257 10257 msgid "You can now sign in with your new password." 10258 10258 msgstr "" 10259 10259 10260 - #: src/view/com/composer/SelectMediaButton.tsx:410 10260 + #: src/view/com/composer/SelectMediaButton.tsx:407 10261 10261 msgid "You can only select one GIF at a time." 10262 10262 msgstr "" 10263 10263 10264 - #: src/view/com/composer/SelectMediaButton.tsx:404 10264 + #: src/view/com/composer/SelectMediaButton.tsx:401 10265 10265 msgid "You can only select one video at a time." 10266 10266 msgstr "" 10267 10267 ··· 10270 10270 msgstr "" 10271 10271 10272 10272 #. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. 10273 - #: src/view/com/composer/SelectMediaButton.tsx:396 10273 + #: src/view/com/composer/SelectMediaButton.tsx:393 10274 10274 msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." 10275 10275 msgstr "" 10276 10276 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "" 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364 ··· 10448 10448 msgid "You must sign in to view this post." 10449 10449 msgstr "" 10450 10450 10451 - #: src/view/com/composer/SelectMediaButton.tsx:439 10451 + #: src/view/com/composer/SelectMediaButton.tsx:436 10452 10452 msgid "You need to allow access to your media library." 10453 10453 msgstr "" 10454 10454
+33 -33
src/locale/locales/ast/messages.po
··· 8 8 "Language: ast\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Asturian\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Amestar" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Amestar a llistes" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Amestóse a la llista" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Calca pa volver unviar el mensaxe que falló" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Siguir" ··· 2192 2192 msgstr "Siguir col filu…" 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Crear" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Crear un avatar" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "L'unviu falló" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Pon cara al perfil" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Ayuda" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Ayuda a que les persones sepan que nun yes un robó xubiendo una semeya o creando un avatar." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "agora" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Agora" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "A unu o más vídeos fálta-yos el testu alternativu." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Namás son compatibles los ficheros .jpg y .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Abiertu" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Abrir el creador d'avatares" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Quitóse de los feeds guardaos" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Volvi tentar la última aición, la que produxo l'error" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Anovando…" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Xubir una semeya" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Nun tienes nenguna llista." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+90 -90
src/locale/locales/az/messages.po
··· 8 8 "Language: az\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Azerbaijani\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 151 151 msgid "{0} is not a valid URL" 152 152 msgstr "" 153 153 154 - #: src/screens/Signup/StepHandle/index.tsx:186 154 + #: src/screens/Signup/StepHandle/index.tsx:189 155 155 msgid "{0} is not available" 156 156 msgstr "" 157 157 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "" ··· 723 723 msgstr "" 724 724 725 725 #. Accessibility label for button in composer to add images, a video, or a GIF to a post 726 - #: src/view/com/composer/SelectMediaButton.tsx:482 726 + #: src/view/com/composer/SelectMediaButton.tsx:468 727 727 msgid "Add media to post" 728 728 msgstr "" 729 729 ··· 782 782 msgid "Add to lists" 783 783 msgstr "" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1043 1043 msgid "and" 1044 1044 msgstr "" 1045 1045 1046 - #: src/screens/Onboarding/index.tsx:43 1046 + #: src/screens/Onboarding/index.tsx:45 1047 1047 #: src/screens/Onboarding/state.ts:102 1048 1048 msgid "Animals" 1049 1049 msgstr "" ··· 1219 1219 msgid "Are you writing in <0>{suggestedLanguageName}</0>?" 1220 1220 msgstr "" 1221 1221 1222 - #: src/screens/Onboarding/index.tsx:37 1222 + #: src/screens/Onboarding/index.tsx:39 1223 1223 #: src/screens/Onboarding/state.ts:103 1224 1224 msgid "Art" 1225 1225 msgstr "" ··· 1487 1487 msgid "Blur images and filter from feeds" 1488 1488 msgstr "" 1489 1489 1490 - #: src/screens/Onboarding/index.tsx:44 1490 + #: src/screens/Onboarding/index.tsx:46 1491 1491 #: src/screens/Onboarding/state.ts:104 1492 1492 msgid "Books" 1493 1493 msgstr "" ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "" 1885 1885 1886 - #: src/screens/Onboarding/index.tsx:46 1886 + #: src/screens/Onboarding/index.tsx:48 1887 1887 msgid "Climate" 1888 1888 msgstr "" 1889 1889 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2014 2014 msgid "Color theme" 2015 2015 msgstr "" 2016 2016 2017 - #: src/screens/Onboarding/index.tsx:52 2017 + #: src/screens/Onboarding/index.tsx:54 2018 2018 #: src/screens/Onboarding/state.ts:105 2019 2019 msgid "Comedy" 2020 2020 msgstr "" 2021 2021 2022 - #: src/screens/Onboarding/index.tsx:38 2022 + #: src/screens/Onboarding/index.tsx:40 2023 2023 #: src/screens/Onboarding/state.ts:106 2024 2024 msgid "Comics" 2025 2025 msgstr "" ··· 2031 2031 msgstr "" 2032 2032 2033 2033 #: src/screens/Onboarding/StepFinished.tsx:473 2034 - #: src/screens/Onboarding/StepFinished.tsx:587 2034 + #: src/screens/Onboarding/StepFinished.tsx:588 2035 2035 msgid "Complete onboarding and start using your account" 2036 2036 msgstr "" 2037 2037 ··· 2173 2173 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 - #: src/screens/Onboarding/StepInterests/index.tsx:253 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:277 2176 + #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:278 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "" ··· 2191 2191 msgid "Continue thread..." 2192 2192 msgstr "" 2193 2193 2194 - #: src/screens/Onboarding/StepInterests/index.tsx:250 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:274 2194 + #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:275 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2212 2212 msgid "Conversation deleted" 2213 2213 msgstr "" 2214 2214 2215 - #: src/screens/Onboarding/index.tsx:55 2215 + #: src/screens/Onboarding/index.tsx:57 2216 2216 msgid "Cooking" 2217 2217 msgstr "" 2218 2218 ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:291 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:293 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2457 2457 msgid "Creator has been blocked" 2458 2458 msgstr "" 2459 2459 2460 - #: src/screens/Onboarding/index.tsx:40 2460 + #: src/screens/Onboarding/index.tsx:42 2461 2461 #: src/screens/Onboarding/state.ts:107 2462 2462 msgid "Culture" 2463 2463 msgstr "" ··· 2734 2734 msgid "Discover new custom feeds" 2735 2735 msgstr "" 2736 2736 2737 - #: src/screens/Search/Explore.tsx:434 2737 + #: src/screens/Search/Explore.tsx:435 2738 2738 #: src/view/screens/Feeds.tsx:730 2739 2739 msgid "Discover New Feeds" 2740 2740 msgstr "" ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:329 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:332 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:334 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3005 3005 msgid "Edit your starter pack" 3006 3006 msgstr "" 3007 3007 3008 - #: src/screens/Onboarding/index.tsx:45 3008 + #: src/screens/Onboarding/index.tsx:47 3009 3009 #: src/screens/Onboarding/state.ts:109 3010 3010 msgid "Education" 3011 3011 msgstr "" ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3434 3434 msgid "Failed to load conversations" 3435 3435 msgstr "" 3436 3436 3437 - #: src/screens/Search/Explore.tsx:470 3438 - #: src/screens/Search/Explore.tsx:522 3439 - #: src/screens/Search/Explore.tsx:560 3440 - #: src/screens/Search/Explore.tsx:599 3437 + #: src/screens/Search/Explore.tsx:471 3438 + #: src/screens/Search/Explore.tsx:523 3439 + #: src/screens/Search/Explore.tsx:561 3440 + #: src/screens/Search/Explore.tsx:600 3441 3441 msgid "Failed to load feeds preferences" 3442 3442 msgstr "" 3443 3443 ··· 3467 3467 msgid "Failed to load preference." 3468 3468 msgstr "" 3469 3469 3470 - #: src/screens/Search/Explore.tsx:463 3471 - #: src/screens/Search/Explore.tsx:515 3472 - #: src/screens/Search/Explore.tsx:553 3473 - #: src/screens/Search/Explore.tsx:592 3470 + #: src/screens/Search/Explore.tsx:464 3471 + #: src/screens/Search/Explore.tsx:516 3472 + #: src/screens/Search/Explore.tsx:554 3473 + #: src/screens/Search/Explore.tsx:593 3474 3474 msgid "Failed to load suggested feeds" 3475 3475 msgstr "" 3476 3476 3477 - #: src/screens/Search/Explore.tsx:373 3477 + #: src/screens/Search/Explore.tsx:374 3478 3478 msgid "Failed to load suggested follows" 3479 3479 msgstr "" 3480 3480 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "" 3519 3519 ··· 3662 3662 msgstr "" 3663 3663 3664 3664 #: src/screens/Onboarding/StepFinished.tsx:479 3665 - #: src/screens/Onboarding/StepFinished.tsx:590 3665 + #: src/screens/Onboarding/StepFinished.tsx:591 3666 3666 msgid "Finalizing" 3667 3667 msgstr "" 3668 3668 ··· 3690 3690 msgid "Finish" 3691 3691 msgstr "" 3692 3692 3693 - #: src/screens/Onboarding/index.tsx:49 3693 + #: src/screens/Onboarding/index.tsx:51 3694 3694 msgid "Fitness" 3695 3695 msgstr "" 3696 3696 ··· 3853 3853 msgid "Font size" 3854 3854 msgstr "" 3855 3855 3856 - #: src/screens/Onboarding/index.tsx:54 3856 + #: src/screens/Onboarding/index.tsx:56 3857 3857 #: src/screens/Onboarding/state.ts:110 3858 3858 msgid "Food" 3859 3859 msgstr "" ··· 4576 4576 msgid "Join the conversation" 4577 4577 msgstr "" 4578 4578 4579 - #: src/screens/Onboarding/index.tsx:35 4579 + #: src/screens/Onboarding/index.tsx:37 4580 4580 #: src/screens/Onboarding/state.ts:112 4581 4581 msgid "Journalism" 4582 4582 msgstr "" ··· 4758 4758 msgstr "" 4759 4759 4760 4760 #: src/screens/Onboarding/StepFinished.tsx:481 4761 - #: src/screens/Onboarding/StepFinished.tsx:590 4761 + #: src/screens/Onboarding/StepFinished.tsx:591 4762 4762 msgid "Let's go!" 4763 4763 msgstr "" 4764 4764 ··· 4943 4943 msgid "Live link" 4944 4944 msgstr "" 4945 4945 4946 - #: src/screens/Search/Explore.tsx:86 4946 + #: src/screens/Search/Explore.tsx:87 4947 4947 msgid "Load more" 4948 4948 msgstr "" 4949 4949 4950 - #: src/screens/Search/Explore.tsx:504 4951 - #: src/screens/Search/Explore.tsx:581 4950 + #: src/screens/Search/Explore.tsx:505 4951 + #: src/screens/Search/Explore.tsx:582 4952 4952 msgid "Load more suggested feeds" 4953 4953 msgstr "" 4954 4954 ··· 5344 5344 msgid "Name or Description Violates Community Standards" 5345 5345 msgstr "" 5346 5346 5347 - #: src/screens/Onboarding/index.tsx:36 5347 + #: src/screens/Onboarding/index.tsx:38 5348 5348 #: src/screens/Onboarding/state.ts:115 5349 5349 msgid "Nature" 5350 5350 msgstr "" ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5498 5498 msgid "Newest replies first" 5499 5499 msgstr "" 5500 5500 5501 - #: src/screens/Onboarding/index.tsx:34 5501 + #: src/screens/Onboarding/index.tsx:36 5502 5502 #: src/screens/Onboarding/state.ts:116 5503 5503 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:238 5504 5504 msgid "News" ··· 5620 5620 msgid "No results" 5621 5621 msgstr "" 5622 5622 5623 - #: src/screens/Search/Explore.tsx:786 5623 + #: src/screens/Search/Explore.tsx:787 5624 5624 msgid "No results for \"{0}\"." 5625 5625 msgstr "" 5626 5626 ··· 5638 5638 msgid "No results found for {query}" 5639 5639 msgstr "" 5640 5640 5641 - #: src/screens/Search/Explore.tsx:790 5641 + #: src/screens/Search/Explore.tsx:791 5642 5642 msgid "No results." 5643 5643 msgstr "" 5644 5644 ··· 5750 5750 msgid "now" 5751 5751 msgstr "" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "" 5756 5756 ··· 5815 5815 msgid "One or more images is missing alt text." 5816 5816 msgstr "" 5817 5817 5818 - #: src/view/com/composer/SelectMediaButton.tsx:390 5818 + #: src/view/com/composer/SelectMediaButton.tsx:387 5819 5819 msgid "One or more of your selected files are not supported." 5820 5820 msgstr "" 5821 5821 5822 - #: src/view/com/composer/SelectMediaButton.tsx:413 5822 + #: src/view/com/composer/SelectMediaButton.tsx:410 5823 5823 msgid "One or more of your selected files are too large. Maximum size is 100 MB." 5824 5824 msgstr "" 5825 5825 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:28 5844 + #: src/lib/media/picker.shared.ts:31 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:285 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:287 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "" 5872 5872 ··· 5976 5976 msgstr "" 5977 5977 5978 5978 #. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. 5979 - #: src/view/com/composer/SelectMediaButton.tsx:488 5979 + #: src/view/com/composer/SelectMediaButton.tsx:474 5980 5980 msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." 5981 5981 msgstr "" 5982 5982 ··· 6157 6157 msgid "Person toggle" 6158 6158 msgstr "" 6159 6159 6160 - #: src/screens/Onboarding/index.tsx:42 6160 + #: src/screens/Onboarding/index.tsx:44 6161 6161 #: src/screens/Onboarding/state.ts:117 6162 6162 msgid "Pets" 6163 6163 msgstr "" ··· 6384 6384 msgid "Please write your message below:" 6385 6385 msgstr "" 6386 6386 6387 - #: src/screens/Onboarding/index.tsx:48 6387 + #: src/screens/Onboarding/index.tsx:50 6388 6388 #: src/screens/Onboarding/state.ts:119 6389 6389 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:232 6390 6390 msgid "Politics" ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 7377 7377 msgid "Say hello!" 7378 7378 msgstr "" 7379 7379 7380 - #: src/screens/Onboarding/index.tsx:47 7380 + #: src/screens/Onboarding/index.tsx:49 7381 7381 #: src/screens/Onboarding/state.ts:120 7382 7382 msgid "Science" 7383 7383 msgstr "" ··· 7438 7438 msgid "Search for feeds that you want to suggest to others." 7439 7439 msgstr "" 7440 7440 7441 - #: src/screens/Search/Explore.tsx:360 7441 + #: src/screens/Search/Explore.tsx:361 7442 7442 msgid "Search for more accounts" 7443 7443 msgstr "" 7444 7444 7445 - #: src/screens/Search/Explore.tsx:437 7445 + #: src/screens/Search/Explore.tsx:438 7446 7446 msgid "Search for more feeds" 7447 7447 msgstr "" 7448 7448 ··· 7665 7665 msgid "Select your preferred notification channels" 7666 7666 msgstr "" 7667 7667 7668 - #: src/view/com/composer/SelectMediaButton.tsx:393 7668 + #: src/view/com/composer/SelectMediaButton.tsx:390 7669 7669 msgid "Selecting multiple media types is not supported." 7670 7670 msgstr "" 7671 7671 ··· 8123 8123 msgid "Snoozes the reminder" 8124 8124 msgstr "" 8125 8125 8126 - #: src/screens/Onboarding/index.tsx:51 8126 + #: src/screens/Onboarding/index.tsx:53 8127 8127 #: src/screens/Onboarding/state.ts:108 8128 8128 msgid "Software Dev" 8129 8129 msgstr "" ··· 8219 8219 msgid "Spam; excessive mentions or replies" 8220 8220 msgstr "" 8221 8221 8222 - #: src/screens/Onboarding/index.tsx:41 8222 + #: src/screens/Onboarding/index.tsx:43 8223 8223 #: src/screens/Onboarding/state.ts:121 8224 8224 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:230 8225 8225 msgid "Sports" ··· 8270 8270 msgid "Starter pack is invalid" 8271 8271 msgstr "" 8272 8272 8273 - #: src/screens/Search/Explore.tsx:628 8273 + #: src/screens/Search/Explore.tsx:629 8274 8274 #: src/view/screens/Profile.tsx:231 8275 8275 msgid "Starter Packs" 8276 8276 msgstr "" ··· 8357 8357 msgid "Successfully verified" 8358 8358 msgstr "" 8359 8359 8360 - #: src/screens/Search/Explore.tsx:357 8360 + #: src/screens/Search/Explore.tsx:358 8361 8361 msgid "Suggested Accounts" 8362 8362 msgstr "" 8363 8363 ··· 8460 8460 msgid "Teach our algorithm what you like" 8461 8461 msgstr "" 8462 8462 8463 - #: src/screens/Onboarding/index.tsx:50 8463 + #: src/screens/Onboarding/index.tsx:52 8464 8464 #: src/screens/Onboarding/state.ts:122 8465 8465 msgid "Tech" 8466 8466 msgstr "" ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:289 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:291 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "" 9395 9395 ··· 9516 9516 msgid "User list updated" 9517 9517 msgstr "" 9518 9518 9519 - #: src/screens/Signup/StepHandle/index.tsx:231 9519 + #: src/screens/Signup/StepHandle/index.tsx:234 9520 9520 msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" 9521 9521 msgstr "" 9522 9522 9523 - #: src/screens/Signup/StepHandle/index.tsx:215 9523 + #: src/screens/Signup/StepHandle/index.tsx:218 9524 9524 msgid "Username cannot begin or end with a hyphen" 9525 9525 msgstr "" 9526 9526 9527 - #: src/screens/Signup/StepHandle/index.tsx:219 9527 + #: src/screens/Signup/StepHandle/index.tsx:222 9528 9528 msgid "Username must only contain letters (a-z), numbers, and hyphens" 9529 9529 msgstr "" 9530 9530 ··· 9665 9665 msgid "Video from {0}: {text}" 9666 9666 msgstr "" 9667 9667 9668 - #: src/screens/Onboarding/index.tsx:53 9668 + #: src/screens/Onboarding/index.tsx:55 9669 9669 #: src/screens/Onboarding/state.ts:111 9670 9670 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:234 9671 9671 msgid "Video Games" ··· 9699 9699 msgid "Videos" 9700 9700 msgstr "" 9701 9701 9702 - #: src/view/com/composer/SelectMediaButton.tsx:407 9702 + #: src/view/com/composer/SelectMediaButton.tsx:404 9703 9703 msgid "Videos must be less than 3 minutes long." 9704 9704 msgstr "" 9705 9705 ··· 10123 10123 msgid "Write your reply" 10124 10124 msgstr "" 10125 10125 10126 - #: src/screens/Onboarding/index.tsx:39 10126 + #: src/screens/Onboarding/index.tsx:41 10127 10127 #: src/screens/Onboarding/state.ts:124 10128 10128 msgid "Writers" 10129 10129 msgstr "" ··· 10257 10257 msgid "You can now sign in with your new password." 10258 10258 msgstr "" 10259 10259 10260 - #: src/view/com/composer/SelectMediaButton.tsx:410 10260 + #: src/view/com/composer/SelectMediaButton.tsx:407 10261 10261 msgid "You can only select one GIF at a time." 10262 10262 msgstr "" 10263 10263 10264 - #: src/view/com/composer/SelectMediaButton.tsx:404 10264 + #: src/view/com/composer/SelectMediaButton.tsx:401 10265 10265 msgid "You can only select one video at a time." 10266 10266 msgstr "" 10267 10267 ··· 10270 10270 msgstr "" 10271 10271 10272 10272 #. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. 10273 - #: src/view/com/composer/SelectMediaButton.tsx:396 10273 + #: src/view/com/composer/SelectMediaButton.tsx:393 10274 10274 msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." 10275 10275 msgstr "" 10276 10276 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "" 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364 ··· 10448 10448 msgid "You must sign in to view this post." 10449 10449 msgstr "" 10450 10450 10451 - #: src/view/com/composer/SelectMediaButton.tsx:439 10451 + #: src/view/com/composer/SelectMediaButton.tsx:436 10452 10452 msgid "You need to allow access to your media library." 10453 10453 msgstr "" 10454 10454
+90 -90
src/locale/locales/bn/messages.po
··· 8 8 "Language: bn\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Bengali\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 151 151 msgid "{0} is not a valid URL" 152 152 msgstr "" 153 153 154 - #: src/screens/Signup/StepHandle/index.tsx:186 154 + #: src/screens/Signup/StepHandle/index.tsx:189 155 155 msgid "{0} is not available" 156 156 msgstr "" 157 157 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "" ··· 723 723 msgstr "" 724 724 725 725 #. Accessibility label for button in composer to add images, a video, or a GIF to a post 726 - #: src/view/com/composer/SelectMediaButton.tsx:482 726 + #: src/view/com/composer/SelectMediaButton.tsx:468 727 727 msgid "Add media to post" 728 728 msgstr "" 729 729 ··· 782 782 msgid "Add to lists" 783 783 msgstr "" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1043 1043 msgid "and" 1044 1044 msgstr "" 1045 1045 1046 - #: src/screens/Onboarding/index.tsx:43 1046 + #: src/screens/Onboarding/index.tsx:45 1047 1047 #: src/screens/Onboarding/state.ts:102 1048 1048 msgid "Animals" 1049 1049 msgstr "" ··· 1219 1219 msgid "Are you writing in <0>{suggestedLanguageName}</0>?" 1220 1220 msgstr "" 1221 1221 1222 - #: src/screens/Onboarding/index.tsx:37 1222 + #: src/screens/Onboarding/index.tsx:39 1223 1223 #: src/screens/Onboarding/state.ts:103 1224 1224 msgid "Art" 1225 1225 msgstr "" ··· 1487 1487 msgid "Blur images and filter from feeds" 1488 1488 msgstr "" 1489 1489 1490 - #: src/screens/Onboarding/index.tsx:44 1490 + #: src/screens/Onboarding/index.tsx:46 1491 1491 #: src/screens/Onboarding/state.ts:104 1492 1492 msgid "Books" 1493 1493 msgstr "" ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "" 1885 1885 1886 - #: src/screens/Onboarding/index.tsx:46 1886 + #: src/screens/Onboarding/index.tsx:48 1887 1887 msgid "Climate" 1888 1888 msgstr "" 1889 1889 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2014 2014 msgid "Color theme" 2015 2015 msgstr "" 2016 2016 2017 - #: src/screens/Onboarding/index.tsx:52 2017 + #: src/screens/Onboarding/index.tsx:54 2018 2018 #: src/screens/Onboarding/state.ts:105 2019 2019 msgid "Comedy" 2020 2020 msgstr "" 2021 2021 2022 - #: src/screens/Onboarding/index.tsx:38 2022 + #: src/screens/Onboarding/index.tsx:40 2023 2023 #: src/screens/Onboarding/state.ts:106 2024 2024 msgid "Comics" 2025 2025 msgstr "" ··· 2031 2031 msgstr "" 2032 2032 2033 2033 #: src/screens/Onboarding/StepFinished.tsx:473 2034 - #: src/screens/Onboarding/StepFinished.tsx:587 2034 + #: src/screens/Onboarding/StepFinished.tsx:588 2035 2035 msgid "Complete onboarding and start using your account" 2036 2036 msgstr "" 2037 2037 ··· 2173 2173 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 - #: src/screens/Onboarding/StepInterests/index.tsx:253 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:277 2176 + #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:278 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "" ··· 2191 2191 msgid "Continue thread..." 2192 2192 msgstr "" 2193 2193 2194 - #: src/screens/Onboarding/StepInterests/index.tsx:250 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:274 2194 + #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:275 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2212 2212 msgid "Conversation deleted" 2213 2213 msgstr "" 2214 2214 2215 - #: src/screens/Onboarding/index.tsx:55 2215 + #: src/screens/Onboarding/index.tsx:57 2216 2216 msgid "Cooking" 2217 2217 msgstr "" 2218 2218 ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:291 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:293 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2457 2457 msgid "Creator has been blocked" 2458 2458 msgstr "" 2459 2459 2460 - #: src/screens/Onboarding/index.tsx:40 2460 + #: src/screens/Onboarding/index.tsx:42 2461 2461 #: src/screens/Onboarding/state.ts:107 2462 2462 msgid "Culture" 2463 2463 msgstr "" ··· 2734 2734 msgid "Discover new custom feeds" 2735 2735 msgstr "" 2736 2736 2737 - #: src/screens/Search/Explore.tsx:434 2737 + #: src/screens/Search/Explore.tsx:435 2738 2738 #: src/view/screens/Feeds.tsx:730 2739 2739 msgid "Discover New Feeds" 2740 2740 msgstr "" ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:329 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:332 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:334 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3005 3005 msgid "Edit your starter pack" 3006 3006 msgstr "" 3007 3007 3008 - #: src/screens/Onboarding/index.tsx:45 3008 + #: src/screens/Onboarding/index.tsx:47 3009 3009 #: src/screens/Onboarding/state.ts:109 3010 3010 msgid "Education" 3011 3011 msgstr "" ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3434 3434 msgid "Failed to load conversations" 3435 3435 msgstr "" 3436 3436 3437 - #: src/screens/Search/Explore.tsx:470 3438 - #: src/screens/Search/Explore.tsx:522 3439 - #: src/screens/Search/Explore.tsx:560 3440 - #: src/screens/Search/Explore.tsx:599 3437 + #: src/screens/Search/Explore.tsx:471 3438 + #: src/screens/Search/Explore.tsx:523 3439 + #: src/screens/Search/Explore.tsx:561 3440 + #: src/screens/Search/Explore.tsx:600 3441 3441 msgid "Failed to load feeds preferences" 3442 3442 msgstr "" 3443 3443 ··· 3467 3467 msgid "Failed to load preference." 3468 3468 msgstr "" 3469 3469 3470 - #: src/screens/Search/Explore.tsx:463 3471 - #: src/screens/Search/Explore.tsx:515 3472 - #: src/screens/Search/Explore.tsx:553 3473 - #: src/screens/Search/Explore.tsx:592 3470 + #: src/screens/Search/Explore.tsx:464 3471 + #: src/screens/Search/Explore.tsx:516 3472 + #: src/screens/Search/Explore.tsx:554 3473 + #: src/screens/Search/Explore.tsx:593 3474 3474 msgid "Failed to load suggested feeds" 3475 3475 msgstr "" 3476 3476 3477 - #: src/screens/Search/Explore.tsx:373 3477 + #: src/screens/Search/Explore.tsx:374 3478 3478 msgid "Failed to load suggested follows" 3479 3479 msgstr "" 3480 3480 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "" 3519 3519 ··· 3662 3662 msgstr "" 3663 3663 3664 3664 #: src/screens/Onboarding/StepFinished.tsx:479 3665 - #: src/screens/Onboarding/StepFinished.tsx:590 3665 + #: src/screens/Onboarding/StepFinished.tsx:591 3666 3666 msgid "Finalizing" 3667 3667 msgstr "" 3668 3668 ··· 3690 3690 msgid "Finish" 3691 3691 msgstr "" 3692 3692 3693 - #: src/screens/Onboarding/index.tsx:49 3693 + #: src/screens/Onboarding/index.tsx:51 3694 3694 msgid "Fitness" 3695 3695 msgstr "" 3696 3696 ··· 3853 3853 msgid "Font size" 3854 3854 msgstr "" 3855 3855 3856 - #: src/screens/Onboarding/index.tsx:54 3856 + #: src/screens/Onboarding/index.tsx:56 3857 3857 #: src/screens/Onboarding/state.ts:110 3858 3858 msgid "Food" 3859 3859 msgstr "" ··· 4576 4576 msgid "Join the conversation" 4577 4577 msgstr "" 4578 4578 4579 - #: src/screens/Onboarding/index.tsx:35 4579 + #: src/screens/Onboarding/index.tsx:37 4580 4580 #: src/screens/Onboarding/state.ts:112 4581 4581 msgid "Journalism" 4582 4582 msgstr "" ··· 4758 4758 msgstr "" 4759 4759 4760 4760 #: src/screens/Onboarding/StepFinished.tsx:481 4761 - #: src/screens/Onboarding/StepFinished.tsx:590 4761 + #: src/screens/Onboarding/StepFinished.tsx:591 4762 4762 msgid "Let's go!" 4763 4763 msgstr "" 4764 4764 ··· 4943 4943 msgid "Live link" 4944 4944 msgstr "" 4945 4945 4946 - #: src/screens/Search/Explore.tsx:86 4946 + #: src/screens/Search/Explore.tsx:87 4947 4947 msgid "Load more" 4948 4948 msgstr "" 4949 4949 4950 - #: src/screens/Search/Explore.tsx:504 4951 - #: src/screens/Search/Explore.tsx:581 4950 + #: src/screens/Search/Explore.tsx:505 4951 + #: src/screens/Search/Explore.tsx:582 4952 4952 msgid "Load more suggested feeds" 4953 4953 msgstr "" 4954 4954 ··· 5344 5344 msgid "Name or Description Violates Community Standards" 5345 5345 msgstr "" 5346 5346 5347 - #: src/screens/Onboarding/index.tsx:36 5347 + #: src/screens/Onboarding/index.tsx:38 5348 5348 #: src/screens/Onboarding/state.ts:115 5349 5349 msgid "Nature" 5350 5350 msgstr "" ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5498 5498 msgid "Newest replies first" 5499 5499 msgstr "" 5500 5500 5501 - #: src/screens/Onboarding/index.tsx:34 5501 + #: src/screens/Onboarding/index.tsx:36 5502 5502 #: src/screens/Onboarding/state.ts:116 5503 5503 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:238 5504 5504 msgid "News" ··· 5620 5620 msgid "No results" 5621 5621 msgstr "" 5622 5622 5623 - #: src/screens/Search/Explore.tsx:786 5623 + #: src/screens/Search/Explore.tsx:787 5624 5624 msgid "No results for \"{0}\"." 5625 5625 msgstr "" 5626 5626 ··· 5638 5638 msgid "No results found for {query}" 5639 5639 msgstr "" 5640 5640 5641 - #: src/screens/Search/Explore.tsx:790 5641 + #: src/screens/Search/Explore.tsx:791 5642 5642 msgid "No results." 5643 5643 msgstr "" 5644 5644 ··· 5750 5750 msgid "now" 5751 5751 msgstr "" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "" 5756 5756 ··· 5815 5815 msgid "One or more images is missing alt text." 5816 5816 msgstr "" 5817 5817 5818 - #: src/view/com/composer/SelectMediaButton.tsx:390 5818 + #: src/view/com/composer/SelectMediaButton.tsx:387 5819 5819 msgid "One or more of your selected files are not supported." 5820 5820 msgstr "" 5821 5821 5822 - #: src/view/com/composer/SelectMediaButton.tsx:413 5822 + #: src/view/com/composer/SelectMediaButton.tsx:410 5823 5823 msgid "One or more of your selected files are too large. Maximum size is 100 MB." 5824 5824 msgstr "" 5825 5825 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:28 5844 + #: src/lib/media/picker.shared.ts:31 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:285 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:287 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "" 5872 5872 ··· 5976 5976 msgstr "" 5977 5977 5978 5978 #. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. 5979 - #: src/view/com/composer/SelectMediaButton.tsx:488 5979 + #: src/view/com/composer/SelectMediaButton.tsx:474 5980 5980 msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." 5981 5981 msgstr "" 5982 5982 ··· 6157 6157 msgid "Person toggle" 6158 6158 msgstr "" 6159 6159 6160 - #: src/screens/Onboarding/index.tsx:42 6160 + #: src/screens/Onboarding/index.tsx:44 6161 6161 #: src/screens/Onboarding/state.ts:117 6162 6162 msgid "Pets" 6163 6163 msgstr "" ··· 6384 6384 msgid "Please write your message below:" 6385 6385 msgstr "" 6386 6386 6387 - #: src/screens/Onboarding/index.tsx:48 6387 + #: src/screens/Onboarding/index.tsx:50 6388 6388 #: src/screens/Onboarding/state.ts:119 6389 6389 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:232 6390 6390 msgid "Politics" ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 7377 7377 msgid "Say hello!" 7378 7378 msgstr "" 7379 7379 7380 - #: src/screens/Onboarding/index.tsx:47 7380 + #: src/screens/Onboarding/index.tsx:49 7381 7381 #: src/screens/Onboarding/state.ts:120 7382 7382 msgid "Science" 7383 7383 msgstr "" ··· 7438 7438 msgid "Search for feeds that you want to suggest to others." 7439 7439 msgstr "" 7440 7440 7441 - #: src/screens/Search/Explore.tsx:360 7441 + #: src/screens/Search/Explore.tsx:361 7442 7442 msgid "Search for more accounts" 7443 7443 msgstr "" 7444 7444 7445 - #: src/screens/Search/Explore.tsx:437 7445 + #: src/screens/Search/Explore.tsx:438 7446 7446 msgid "Search for more feeds" 7447 7447 msgstr "" 7448 7448 ··· 7665 7665 msgid "Select your preferred notification channels" 7666 7666 msgstr "" 7667 7667 7668 - #: src/view/com/composer/SelectMediaButton.tsx:393 7668 + #: src/view/com/composer/SelectMediaButton.tsx:390 7669 7669 msgid "Selecting multiple media types is not supported." 7670 7670 msgstr "" 7671 7671 ··· 8123 8123 msgid "Snoozes the reminder" 8124 8124 msgstr "" 8125 8125 8126 - #: src/screens/Onboarding/index.tsx:51 8126 + #: src/screens/Onboarding/index.tsx:53 8127 8127 #: src/screens/Onboarding/state.ts:108 8128 8128 msgid "Software Dev" 8129 8129 msgstr "" ··· 8219 8219 msgid "Spam; excessive mentions or replies" 8220 8220 msgstr "" 8221 8221 8222 - #: src/screens/Onboarding/index.tsx:41 8222 + #: src/screens/Onboarding/index.tsx:43 8223 8223 #: src/screens/Onboarding/state.ts:121 8224 8224 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:230 8225 8225 msgid "Sports" ··· 8270 8270 msgid "Starter pack is invalid" 8271 8271 msgstr "" 8272 8272 8273 - #: src/screens/Search/Explore.tsx:628 8273 + #: src/screens/Search/Explore.tsx:629 8274 8274 #: src/view/screens/Profile.tsx:231 8275 8275 msgid "Starter Packs" 8276 8276 msgstr "" ··· 8357 8357 msgid "Successfully verified" 8358 8358 msgstr "" 8359 8359 8360 - #: src/screens/Search/Explore.tsx:357 8360 + #: src/screens/Search/Explore.tsx:358 8361 8361 msgid "Suggested Accounts" 8362 8362 msgstr "" 8363 8363 ··· 8460 8460 msgid "Teach our algorithm what you like" 8461 8461 msgstr "" 8462 8462 8463 - #: src/screens/Onboarding/index.tsx:50 8463 + #: src/screens/Onboarding/index.tsx:52 8464 8464 #: src/screens/Onboarding/state.ts:122 8465 8465 msgid "Tech" 8466 8466 msgstr "" ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:289 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:291 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "" 9395 9395 ··· 9516 9516 msgid "User list updated" 9517 9517 msgstr "" 9518 9518 9519 - #: src/screens/Signup/StepHandle/index.tsx:231 9519 + #: src/screens/Signup/StepHandle/index.tsx:234 9520 9520 msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" 9521 9521 msgstr "" 9522 9522 9523 - #: src/screens/Signup/StepHandle/index.tsx:215 9523 + #: src/screens/Signup/StepHandle/index.tsx:218 9524 9524 msgid "Username cannot begin or end with a hyphen" 9525 9525 msgstr "" 9526 9526 9527 - #: src/screens/Signup/StepHandle/index.tsx:219 9527 + #: src/screens/Signup/StepHandle/index.tsx:222 9528 9528 msgid "Username must only contain letters (a-z), numbers, and hyphens" 9529 9529 msgstr "" 9530 9530 ··· 9665 9665 msgid "Video from {0}: {text}" 9666 9666 msgstr "" 9667 9667 9668 - #: src/screens/Onboarding/index.tsx:53 9668 + #: src/screens/Onboarding/index.tsx:55 9669 9669 #: src/screens/Onboarding/state.ts:111 9670 9670 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:234 9671 9671 msgid "Video Games" ··· 9699 9699 msgid "Videos" 9700 9700 msgstr "" 9701 9701 9702 - #: src/view/com/composer/SelectMediaButton.tsx:407 9702 + #: src/view/com/composer/SelectMediaButton.tsx:404 9703 9703 msgid "Videos must be less than 3 minutes long." 9704 9704 msgstr "" 9705 9705 ··· 10123 10123 msgid "Write your reply" 10124 10124 msgstr "" 10125 10125 10126 - #: src/screens/Onboarding/index.tsx:39 10126 + #: src/screens/Onboarding/index.tsx:41 10127 10127 #: src/screens/Onboarding/state.ts:124 10128 10128 msgid "Writers" 10129 10129 msgstr "" ··· 10257 10257 msgid "You can now sign in with your new password." 10258 10258 msgstr "" 10259 10259 10260 - #: src/view/com/composer/SelectMediaButton.tsx:410 10260 + #: src/view/com/composer/SelectMediaButton.tsx:407 10261 10261 msgid "You can only select one GIF at a time." 10262 10262 msgstr "" 10263 10263 10264 - #: src/view/com/composer/SelectMediaButton.tsx:404 10264 + #: src/view/com/composer/SelectMediaButton.tsx:401 10265 10265 msgid "You can only select one video at a time." 10266 10266 msgstr "" 10267 10267 ··· 10270 10270 msgstr "" 10271 10271 10272 10272 #. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. 10273 - #: src/view/com/composer/SelectMediaButton.tsx:396 10273 + #: src/view/com/composer/SelectMediaButton.tsx:393 10274 10274 msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." 10275 10275 msgstr "" 10276 10276 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "" 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364 ··· 10448 10448 msgid "You must sign in to view this post." 10449 10449 msgstr "" 10450 10450 10451 - #: src/view/com/composer/SelectMediaButton.tsx:439 10451 + #: src/view/com/composer/SelectMediaButton.tsx:436 10452 10452 msgid "You need to allow access to your media library." 10453 10453 msgstr "" 10454 10454
+33 -33
src/locale/locales/ca/messages.po
··· 8 8 "Language: ca\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Catalan\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# persones han}} utilitzat aquest starter pack!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, one {}other {+# més}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Afegeix" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Afegeix a les llistes" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Afegit a la llista" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "Afegit al teu starter pack" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Fes clic per a obrir el menú d'etiquetes per a {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Clica aquí per provar d'enviar el missatge de nou" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Continua" ··· 2192 2192 msgstr "Continua el fil..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Crea" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Crea un compte sense utilitzar aquest starter pack" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Enlloc d'això, crea un avatar" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Crea un informe per a {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "Crea un starter pack" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "No s'ha pogut afegir la reacció d'emoji" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "No s'ha pogut afegir a l'starter pack" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "No s'ha pogut eliminar la reacció d'emoji" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "No s'ha pogut eliminar de l'starter pack" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "No s'han pogut desar els teus interessos." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "No s'ha pogut enviar" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Posa una cara al teu perfil" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Ajuda" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Ajuda la gent a saber que no ets un bot penjant una imatge o creant un avatar." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Noves publicacions de {firstAuthorName} i{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "Nou starter pack" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "ara" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Ara" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Falta el text alternatiu a un o més videos." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Només s'accepten fitxers .jpg i .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Només seguidors que segueixo" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Només s'admeten fitxers d'imatge" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Obert" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Obre el creador d'avatars" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Eliminat dels canals desats" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "Eliminat de l'starter pack" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Torna a intentar l'última acció, que ha donat error" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Actualitzant…" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Enlloc d'això, penja una foto" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "No tens llistes." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "No tens starter packs." 10364 10364
+33 -33
src/locale/locales/cy/messages.po
··· 8 8 "Language: cy\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Welsh\n" 14 14 "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# person wedi}} defnyddio'r tecyn cychwyn hwn!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, zero {} one {+# yn rhagor} two {+# yn rhagor} few {+# yn rhagor} many {+# yn rhagor}other {+# yn rhagor}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Ychwanegu" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Ychwanegu at y rhestrau" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Ychwanegwyd at y rhestr" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "Wedi'i ychwanegu at becyn cychwyn" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Cliciwch i agor dewislen tag {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Parhau" ··· 2192 2192 msgstr "Parhau â'r trywydd..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Creu" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Crëwch gyfrif heb ddefnyddio'r pecyn cychwyn hwn" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Creu afatar yn lle hynny" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Creu adroddiad ar gyfer {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "Creu pecyn cychwyn" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Wedi methu ychwanegu emoji ymateb" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "Wedi methu ychwanegu at becyn cychwyn" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Wedi methu dileu emoji ymateb" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "Wedi methu tynnu o becyn cychwyn" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Wedi methu cadw'ch diddordebau." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Methwyd anfon" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Rhowch wyneb i'ch proffil" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Cymorth" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Helpwch bobl i wybod nad ydych chi'n bot trwy lwytho llun neu greu afatar." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Postiadau newydd gan {firstAuthorName} a {additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "Pecyn cychwyn newydd" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "nawr" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Nawr" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Does dim testun amgen ar un neu fwy o fideos." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Dim ond ffeiliau .jpg a .png sy'n cael eu cefnogi" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Dim ond dilynwyr rwy'n eu dilyn" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Dim ond ffeiliau delwedd sy'n cael eu cefnogi" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Agor" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Agor y crëwr avatar" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Wedi'i dynnu o'r ffrydiau sydd wedi'u cadw" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "Wedi ei dynnu o'r pecyn cychwyn" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Yn ceisio'r weithred olaf eto, oedd yn wallus" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Yn diweddaru..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Llwytho lun i fyny yn lle hynny" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Nid oes gennych unrhyw restrau." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "Does gennych chi ddim pecynnau cychwyn." 10364 10364
+33 -33
src/locale/locales/da/messages.po
··· 8 8 "Language: da\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Danish\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, one {}other {# personer have}} har brugt denne startpakke!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, one {}other {+# flere}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Tilføj" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Føj til lister" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Tilføjet liste" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "Tilføjet startpakke" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Klik for at åbne tagmenuen for {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Klik for at prøve at sende beskeden igen" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Fortsæt" ··· 2192 2192 msgstr "Fortsæt tråd..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Opret" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Opret en konto uden at bruge denne startpakke" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Opret en avatar i stedet" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Opret anmeldelse for {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "Opret startpakke" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Kunne ikke tilføje emojireaktion" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "Kunne ikke føje til startpakke" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Kunne ikke fjerne emojireaktion" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "Kunne ikke fjerne fra startpakke" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Kunne ikke gemme dine interesser." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Kunne ikke sende" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Sæt ansigt på din profil" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Hjælp" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Lad andre vide, at du ikke er en robot, ved at uploade et billede eller oprette en avatar" 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Nye opslag fra {firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "Ny startpakke" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "nu" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Nu" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Et eller flere videoer mangler alt-tekst." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Kun .jpg- og .png-filer er understøttet" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Kun følgere, jeg følger" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Kun billedfiler er understøttet" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Åbn" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Åbn avatarbygger" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Fjernet fra gemte feeds" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "Fjernet fra startpakke" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Prøver at gentage den seneste handling, der fejlede" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Opdaterer..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Upload et foto i stedet" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Du har ingen lister." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "Du har ingen startpakker." 10364 10364
+42 -42
src/locale/locales/de/messages.po
··· 8 8 "Language: de\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: German\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# Personen haben}} dieses Startpaket verwendet!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, other {+# mehr}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Hinzufügen" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Zu Listen hinzufügen" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Zur Liste hinzugefügt" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "Zum Startpaket hinzugefügt" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Klicken, um das Tag-Menü für {tag} zu öffnen" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Fortfahren" ··· 2192 2192 msgstr "Thread fortsetzen…" 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Erstellen" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Stattdessen ohne dieses Startpaket einen Account erstellen" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Stattdessen einen Avatar erstellen" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Meldung für {0} erstellen" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "Startpaket erstellen" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Fehler beim Hinzufügen der Emoji-Reaktion" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "Hinzufügen zum Startpaket fehlgeschlagen" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Fehler beim Entfernen der Emoji-Reaktion" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "Fehler beim Entfernen aus dem Startpaket" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Interessen konnten nicht gespeichert werden." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Konnte nicht gesendet werden" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Gib deinem Profil ein Gesicht" 4005 4005 ··· 4022 4022 #: src/view/screens/NotFound.tsx:57 4023 4023 #: src/view/screens/ProfileList.tsx:1038 4024 4024 msgid "Go back" 4025 - msgstr "Zurückgehen" 4025 + msgstr "Zurück" 4026 4026 4027 4027 #: src/components/Error.tsx:78 4028 4028 #: src/screens/List/ListHiddenScreen.tsx:224 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Hilfe" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Hilf anderen zu erkennen, dass du kein Bot bist, indem du ein Bild hochlädst oder einen Avatar erstellst." 4167 4167 ··· 4674 4674 4675 4675 #: src/view/com/auth/SplashScreen.web.tsx:168 4676 4676 msgid "Learn more about Bluesky" 4677 - msgstr "Erfahre mehr über Bluesky" 4677 + msgstr "Erfahre mehr über Bluesky (auf Englisch)" 4678 4678 4679 4679 #: src/view/com/auth/server-input/index.tsx:218 4680 4680 msgid "Learn more about self hosting your PDS." 4681 - msgstr "Erfahre mehr über das Selbst-Hosting deiner PDS." 4681 + msgstr "Erfahre mehr über das Selbst-Hosting deiner PDS (auf Englisch)." 4682 4682 4683 4683 #: src/components/moderation/ContentHider.tsx:152 4684 4684 #: src/components/moderation/ContentHider.tsx:218 ··· 4687 4687 4688 4688 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:149 4689 4689 msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post.</0>" 4690 - msgstr "Erfahre mehr über diese Änderungen und wie du uns deine Meinung mitteilen kannst, indem du <0>unseren Blogpost liest.</0>" 4690 + msgstr "Erfahre mehr über diese Änderungen und wie du uns deine Meinung mitteilen kannst, indem du <0>unseren Blogpost liest (auf Englisch).</0>" 4691 4691 4692 4692 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:89 4693 4693 msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." 4694 - msgstr "Erfahre mehr über diese Änderungen und wie du uns deine Meinung mitteilen kannst, indem du unseren Blogpost liest." 4694 + msgstr "Erfahre mehr über diese Änderungen und wie du uns deine Meinung mitteilen kannst, indem du unseren Blogpost liest (auf Englisch)." 4695 4695 4696 4696 #: src/components/moderation/PostHider.tsx:110 4697 4697 #: src/components/moderation/ScreenHider.tsx:127 ··· 4707 4707 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 4708 4708 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 4709 4709 msgid "Learn more about what is public on Bluesky." 4710 - msgstr "Erfahre mehr darüber, was auf Bluesky öffentlich ist." 4710 + msgstr "Erfahre mehr darüber, was auf Bluesky öffentlich ist (auf Englisch)." 4711 4711 4712 4712 #: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:86 4713 4713 msgid "Learn more in your <0>account settings.</0>" ··· 4831 4831 #: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 4832 4832 #: src/view/screens/Profile.tsx:229 4833 4833 msgid "Likes" 4834 - msgstr "„Gefällt mir“-Angaben" 4834 + msgstr "Gefällt mir" 4835 4835 4836 4836 #: src/lib/hooks/useNotificationHandler.ts:168 4837 4837 #: src/screens/Settings/NotificationSettings/index.tsx:207 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Neue Posts von {firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "Neues Startpaket" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "jetzt" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Jetzt" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Bei einem oder mehreren Videos fehlen Alt-Texte." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Nur .jpg- und .png-Dateien werden unterstützt" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Nur Follower, denen ich folge" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Es werden nur Bilddateien unterstützt" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Öffnen" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Avatar-Editor öffnen" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Aus gespeicherten Feeds entfernt" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "Aus dem Startpaket entfernt" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Wiederholt die letzte Aktion, bei der ein Fehler aufgetreten ist" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 8126 8126 #: src/screens/Onboarding/index.tsx:53 8127 8127 #: src/screens/Onboarding/state.ts:108 8128 8128 msgid "Software Dev" 8129 - msgstr "Software-Entwickler" 8129 + msgstr "Software-Entwicklung" 8130 8130 8131 8131 #: src/components/verification/VerificationsDialog.tsx:120 8132 8132 msgid "Some of your verifications are invalid." ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Wird aktualisiert…" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Stattdessen ein Foto hochladen" 9395 9395 ··· 10012 10012 10013 10013 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:61 10014 10014 msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." 10015 - msgstr "Wir aktualisieren unsere Nutzungsbedingungen, Datenschutzerklärung und Urheberrechtsrichtlinie, gültig ab dem 15. September 2025. Außerdem aktualisieren wir unsere Community-Richtlinien und möchten deine Meinung dazu hören! Diese neuen Richtlinien treten am 15. Oktober 2025 in Kraft. Erfahre mehr über diese Änderungen und wie du uns deine Meinung mitteilen kannst, indem du unseren Blogpost liest." 10015 + msgstr "Wir aktualisieren unsere Nutzungsbedingungen, Datenschutzerklärung und Urheberrechtsrichtlinie, gültig ab dem 15. September 2025. Außerdem aktualisieren wir unsere Community-Richtlinien und möchten deine Meinung dazu hören! Diese neuen Richtlinien treten am 15. Oktober 2025 in Kraft. Erfahre mehr über diese Änderungen und wie du uns deine Meinung mitteilen kannst, indem du unseren Blogpost liest (auf Englisch)." 10016 10016 10017 10017 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:169 10018 10018 msgid "We've confirmed your age assurance status. You can now close this dialog." ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Du hast keine Listen." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "Du hast keine Startpakete." 10364 10364
+33 -33
src/locale/locales/el/messages.po
··· 8 8 "Language: el\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Greek\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Προσθήκη" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Προσθήκη σε λίστες" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Προστέθηκε στη λίστα" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Κάντε κλικ για να επαναλάβετε το αποτυχημένο μήνυμα" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Συνέχεια" ··· 2192 2192 msgstr "Συνέχεια συζήτησης..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Δημιουργία" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Δημιουργήστε μια εικόνα προφίλ εωαλλακτικά" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Δημιουργία αναφοράς για {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Απέτυχε η αποστολή" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Δώστε στο προφίλ σας ένα πρόσωπο" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Βοήθεια" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Βοηθήστε τους ανθρώπους να καταλάβουν ότι δεν είστε bot ανεβάζοντας μια εικόνα ή δημιουργώντας μια εικόνα προφίλ." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "τώρα" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Τώρα" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Ένα ή περισσότερα βίντεο λείπουν το εναλλακτικό κείμενο." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Υποστηρίζονται μόνο αρχεία .jpg και .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Υποστηρίζονται μόνο αρχεία εικόνας" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Άνοιγμα" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Άνοιγμα δημιουργού εικόνας προφίλ" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Αφαιρέθηκε από τις αποθηκευμένες ροές" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Επανάληψη της τελευταίας ενέργειας, η οποία παρουσίασε σφάλμα" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Ενημέρωση..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Αντ'αυτού, ανεβάστε μια φωτογραφία" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Δεν έχετε λίστες." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+34 -34
src/locale/locales/en-GB/messages.po
··· 8 8 "Language: en_GB\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: English, United Kingdom\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# people have}} used this starter pack!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, other {+# more}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Add" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Add to lists" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Added to list" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "Added to starter pack" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Click to open tag menu for {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Click to retry failed message" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Continue" ··· 2192 2192 msgstr "Continue thread..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Create" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Create an account without using this starter pack" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Create an avatar instead" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Create report for {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "Create starter pack" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Failed to add emoji reaction" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "Failed to add to starter pack" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Failed to remove emoji reaction" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "Failed to remove from starter pack" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Failed to save your interests." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Failed to send" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Give your profile a face" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Help" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Help people know you're not a bot by uploading a picture or creating an avatar." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "New starter pack" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "now" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Now" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "One or more videos is missing alt text." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Only .jpg and .png files are supported" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Only followers who I follow" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Only image files are supported" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Open" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Open avatar creator" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Removed from saved feeds" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "Removed from starter pack" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Retries the last action, which errored out" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 7448 7448 7449 7449 #: src/screens/Search/Shell.tsx:334 7450 7450 msgid "Search for posts, users, or feeds" 7451 - msgstr "Search for posts, users or feeds" 7451 + msgstr "Search for posts, users, or feeds" 7452 7452 7453 7453 #: src/components/dialogs/GifSelect.tsx:178 7454 7454 msgid "Search GIFs" ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Updating..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Upload a photo instead" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "You have no lists." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "You have no starter packs." 10364 10364
+32 -32
src/locale/locales/en/messages.po
··· 120 120 msgid "{0, plural, other {# people have}} used this starter pack!" 121 121 msgstr "" 122 122 123 - #: src/components/dialogs/StarterPackDialog.tsx:370 123 + #: src/components/dialogs/StarterPackDialog.tsx:357 124 124 msgid "{0, plural, other {+# more}}" 125 125 msgstr "" 126 126 ··· 645 645 646 646 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 647 647 #: src/components/dialogs/MutedWords.tsx:328 648 - #: src/components/dialogs/StarterPackDialog.tsx:384 649 - #: src/components/dialogs/StarterPackDialog.tsx:390 648 + #: src/components/dialogs/StarterPackDialog.tsx:371 649 + #: src/components/dialogs/StarterPackDialog.tsx:377 650 650 #: src/view/com/modals/UserAddRemoveLists.tsx:235 651 651 msgid "Add" 652 652 msgstr "" ··· 777 777 msgid "Add to lists" 778 778 msgstr "" 779 779 780 - #: src/components/dialogs/StarterPackDialog.tsx:187 780 + #: src/components/dialogs/StarterPackDialog.tsx:176 781 781 #: src/view/com/profile/ProfileMenu.tsx:308 782 782 #: src/view/com/profile/ProfileMenu.tsx:311 783 783 msgid "Add to starter packs" ··· 792 792 msgid "Added to list" 793 793 msgstr "" 794 794 795 - #: src/components/dialogs/StarterPackDialog.tsx:271 795 + #: src/components/dialogs/StarterPackDialog.tsx:258 796 796 msgid "Added to starter pack" 797 797 msgstr "" 798 798 ··· 1874 1874 msgid "Click to open tag menu for {tag}" 1875 1875 msgstr "" 1876 1876 1877 - #: src/components/dms/MessageItem.tsx:317 1877 + #: src/components/dms/MessageItem.tsx:318 1878 1878 msgid "Click to retry failed message" 1879 1879 msgstr "" 1880 1880 ··· 1896 1896 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1897 1897 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1898 1898 #: src/components/dialogs/SearchablePeopleList.tsx:295 1899 - #: src/components/dialogs/StarterPackDialog.tsx:190 1899 + #: src/components/dialogs/StarterPackDialog.tsx:179 1900 1900 #: src/components/dms/EmojiPopup.android.tsx:58 1901 1901 #: src/components/dms/ReportDialog.tsx:381 1902 1902 #: src/components/dms/ReportDialog.tsx:390 ··· 2169 2169 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2170 2170 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2171 2171 #: src/screens/Onboarding/StepInterests/index.tsx:254 2172 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2172 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2173 2173 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2174 2174 msgid "Continue" 2175 2175 msgstr "" ··· 2187 2187 msgstr "" 2188 2188 2189 2189 #: src/screens/Onboarding/StepInterests/index.tsx:251 2190 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2190 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2191 2191 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2192 2192 #: src/screens/Signup/BackNextButtons.tsx:60 2193 2193 msgid "Continue to next step" ··· 2373 2373 2374 2374 #. Text on button to create a new starter pack 2375 2375 #. Text on button to create a new starter pack 2376 - #: src/components/dialogs/StarterPackDialog.tsx:113 2377 - #: src/components/dialogs/StarterPackDialog.tsx:212 2376 + #: src/components/dialogs/StarterPackDialog.tsx:112 2377 + #: src/components/dialogs/StarterPackDialog.tsx:201 2378 2378 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2379 2379 msgid "Create" 2380 2380 msgstr "" ··· 2421 2421 msgid "Create an account without using this starter pack" 2422 2422 msgstr "" 2423 2423 2424 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2424 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2425 2425 msgid "Create an avatar instead" 2426 2426 msgstr "" 2427 2427 ··· 2439 2439 msgid "Create report for {0}" 2440 2440 msgstr "" 2441 2441 2442 - #: src/components/dialogs/StarterPackDialog.tsx:108 2443 - #: src/components/dialogs/StarterPackDialog.tsx:207 2442 + #: src/components/dialogs/StarterPackDialog.tsx:107 2443 + #: src/components/dialogs/StarterPackDialog.tsx:196 2444 2444 msgid "Create starter pack" 2445 2445 msgstr "" 2446 2446 ··· 2810 2810 #: src/components/forms/DateField/index.tsx:109 2811 2811 #: src/components/Select/index.tsx:185 2812 2812 #: src/components/Select/index.tsx:192 2813 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2814 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2813 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2814 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2815 2815 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2816 2816 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2817 2817 #: src/view/com/auth/server-input/index.tsx:232 ··· 3377 3377 msgid "Failed to add emoji reaction" 3378 3378 msgstr "" 3379 3379 3380 - #: src/components/dialogs/StarterPackDialog.tsx:283 3380 + #: src/components/dialogs/StarterPackDialog.tsx:270 3381 3381 msgid "Failed to add to starter pack" 3382 3382 msgstr "" 3383 3383 ··· 3487 3487 msgid "Failed to remove emoji reaction" 3488 3488 msgstr "" 3489 3489 3490 - #: src/components/dialogs/StarterPackDialog.tsx:302 3490 + #: src/components/dialogs/StarterPackDialog.tsx:289 3491 3491 msgid "Failed to remove from starter pack" 3492 3492 msgstr "" 3493 3493 ··· 3508 3508 msgid "Failed to save your interests." 3509 3509 msgstr "" 3510 3510 3511 - #: src/components/dms/MessageItem.tsx:310 3511 + #: src/components/dms/MessageItem.tsx:311 3512 3512 msgid "Failed to send" 3513 3513 msgstr "" 3514 3514 ··· 3994 3994 msgid "GIF" 3995 3995 msgstr "" 3996 3996 3997 - #: src/screens/Onboarding/StepProfile/index.tsx:233 3997 + #: src/screens/Onboarding/StepProfile/index.tsx:235 3998 3998 msgid "Give your profile a face" 3999 3999 msgstr "" 4000 4000 ··· 4156 4156 msgid "Help" 4157 4157 msgstr "" 4158 4158 4159 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4159 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4160 4160 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4161 4161 msgstr "" 4162 4162 ··· 5474 5474 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5475 5475 msgstr "" 5476 5476 5477 - #: src/components/dialogs/StarterPackDialog.tsx:204 5477 + #: src/components/dialogs/StarterPackDialog.tsx:193 5478 5478 msgid "New starter pack" 5479 5479 msgstr "" 5480 5480 ··· 5745 5745 msgid "now" 5746 5746 msgstr "" 5747 5747 5748 - #: src/components/dms/MessageItem.tsx:274 5748 + #: src/components/dms/MessageItem.tsx:275 5749 5749 msgid "Now" 5750 5750 msgstr "" 5751 5751 ··· 5822 5822 msgid "One or more videos is missing alt text." 5823 5823 msgstr "" 5824 5824 5825 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5825 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5826 5826 msgid "Only .jpg and .png files are supported" 5827 5827 msgstr "" 5828 5828 ··· 5836 5836 msgid "Only followers who I follow" 5837 5837 msgstr "" 5838 5838 5839 - #: src/lib/media/picker.shared.ts:31 5839 + #: src/lib/media/picker.shared.ts:33 5840 5840 msgid "Only image files are supported" 5841 5841 msgstr "" 5842 5842 ··· 5861 5861 msgid "Open" 5862 5862 msgstr "" 5863 5863 5864 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5864 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5865 5865 msgid "Open avatar creator" 5866 5866 msgstr "" 5867 5867 ··· 6792 6792 6793 6793 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6794 6794 #: src/components/dialogs/MutedWords.tsx:438 6795 - #: src/components/dialogs/StarterPackDialog.tsx:384 6796 - #: src/components/dialogs/StarterPackDialog.tsx:390 6795 + #: src/components/dialogs/StarterPackDialog.tsx:371 6796 + #: src/components/dialogs/StarterPackDialog.tsx:377 6797 6797 #: src/components/FeedCard.tsx:343 6798 6798 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6799 6799 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6926 6926 msgid "Removed from saved feeds" 6927 6927 msgstr "" 6928 6928 6929 - #: src/components/dialogs/StarterPackDialog.tsx:290 6929 + #: src/components/dialogs/StarterPackDialog.tsx:277 6930 6930 msgid "Removed from starter pack" 6931 6931 msgstr "" 6932 6932 ··· 7243 7243 msgid "Retries the last action, which errored out" 7244 7244 msgstr "" 7245 7245 7246 - #: src/components/dms/MessageItem.tsx:321 7246 + #: src/components/dms/MessageItem.tsx:322 7247 7247 #: src/components/Error.tsx:65 7248 7248 #: src/components/Lists.tsx:111 7249 7249 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9384 9384 msgid "Updating..." 9385 9385 msgstr "" 9386 9386 9387 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9387 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9388 9388 msgid "Upload a photo instead" 9389 9389 msgstr "" 9390 9390 ··· 10353 10353 msgid "You have no lists." 10354 10354 msgstr "" 10355 10355 10356 - #: src/components/dialogs/StarterPackDialog.tsx:102 10356 + #: src/components/dialogs/StarterPackDialog.tsx:101 10357 10357 msgid "You have no starter packs." 10358 10358 msgstr "" 10359 10359
+61 -61
src/locale/locales/eo/messages.po
··· 8 8 "Language: eo\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Esperanto\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 21 21 #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. 22 22 #: src/components/InterestTabs.tsx:325 23 23 msgid "\"{interestsDisplayName}\" category (active)" 24 - msgstr "" 24 + msgstr "Kategorio \"{interestsDisplayName}\" (aktiva)" 25 25 26 26 #: src/screens/Messages/components/ChatListItem.tsx:160 27 27 msgid "(contains embedded content)" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, one {# homo}other {# homoj}} uzis ĉi tiun startpakon!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, other {+# pli}}" 131 131 ··· 524 524 525 525 #: src/screens/Onboarding/StepFinished.tsx:341 526 526 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" 527 - msgstr "" 527 + msgstr "Aro de popularaj fluoj, kiujn vi povas trovi ĉe Bluesky, inkluzive de News, Booksky, Game Dev, Blacksky kaj Fountain Pens" 528 528 529 529 #. If last message does not contain text, fall back to "{user} reacted to {a message}" 530 530 #: src/screens/Messages/components/ChatListItem.tsx:210 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Aldoni" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Aldoni al listoj" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Aldonita al listo" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "Aldonita al la startpako" 803 803 ··· 964 964 965 965 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:176 966 966 msgid "An error occurred while fetching suggested accounts." 967 - msgstr "" 967 + msgstr "Eraro okazis dum ŝargado de proponitaj kontoj." 968 968 969 969 #: src/state/queries/explore-feed-previews.tsx:173 970 970 msgid "An error occurred while fetching the feed." ··· 997 997 998 998 #: src/screens/Onboarding/StepFinished.tsx:359 999 999 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" 1000 - msgstr "" 1000 + msgstr "Ilustraĵo montranta plurajn Bluesky-afiŝojn apud piktogramoj de reafiŝado, ŝatado kaj komentado" 1001 1001 1002 1002 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84 1003 1003 #: src/components/verification/VerifierDialog.tsx:86 ··· 1808 1808 1809 1809 #: src/view/com/composer/select-language/SelectPostLanguagesDialog.tsx:226 1810 1810 msgid "Choose Post Languages" 1811 - msgstr "" 1811 + msgstr "Elektu lingvojn de la afiŝo" 1812 1812 1813 1813 #: src/screens/Onboarding/StepFinished.tsx:575 1814 1814 msgid "Choose the algorithms that power your custom feeds." ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Alklaku por malfermi etikedan menuon por {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Alklaku por reprovi sendi mesaĝon" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Daŭrigi" ··· 2192 2192 msgstr "Daŭrigi fadenon..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Krei" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Krei konton neuzante ĉi tiun startpakon" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Krei profilbildon anstataŭe" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Krei raporton pri {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "Krei startpakon" 2451 2451 ··· 2772 2772 2773 2773 #: src/screens/Onboarding/StepFinished.tsx:347 2774 2774 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." 2775 - msgstr "" 2775 + msgstr "Forlasu la trolojn kaj klakallogilojn. Trovu realajn homojn kaj konversaciojn, kiuj gravas por vi." 2776 2776 2777 2777 #: src/screens/Settings/components/ChangeHandleDialog.tsx:402 2778 2778 #: src/screens/Settings/components/ChangeHandleDialog.tsx:404 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Malsukcesis aldoni emoĝian reagon" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "Malsukcesis aldoni al la startpako" 3388 3388 ··· 3427 3427 3428 3428 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:126 3429 3429 msgid "Failed to follow all suggested accounts, please try again" 3430 - msgstr "" 3430 + msgstr "Malsukcesis sekvi ĉiujn proponitajn kontojn, bonvolu reprovi" 3431 3431 3432 3432 #: src/screens/Messages/ChatList.tsx:270 3433 3433 #: src/screens/Messages/Inbox.tsx:208 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Malsukcesis forigi emoĝian reagon" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "Malsukcesis forigi el la startpako" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Malsukcesis konservi viajn interesojn." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Malsukcesis sendi" 3519 3519 ··· 3684 3684 3685 3685 #: src/screens/Onboarding/StepFinished.tsx:345 3686 3686 msgid "Find your people" 3687 - msgstr "" 3687 + msgstr "Trovu viajn konatojn" 3688 3688 3689 3689 #: src/screens/StarterPack/Wizard/index.tsx:218 3690 3690 msgid "Finish" ··· 3759 3759 3760 3760 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:232 3761 3761 msgid "Follow all accounts" 3762 - msgstr "" 3762 + msgstr "Eksekvu ĉiujn kontojn" 3763 3763 3764 3764 #. User is not following this account, click to follow back 3765 3765 #: src/components/ProfileCard.tsx:518 ··· 3775 3775 3776 3776 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:121 3777 3777 msgid "Followed all accounts!" 3778 - msgstr "" 3778 + msgstr "Ĉiuj kontoj eksekvitaj!" 3779 3779 3780 3780 #: src/components/KnownFollowers.tsx:238 3781 3781 msgid "Followed by <0>{0}</0>" ··· 3885 3885 3886 3886 #: src/screens/Onboarding/StepFinished.tsx:354 3887 3887 msgid "Forget the noise" 3888 - msgstr "" 3888 + msgstr "Forgesu pri bruo" 3889 3889 3890 3890 #: src/screens/Login/index.tsx:153 3891 3891 #: src/screens/Login/index.tsx:168 ··· 3902 3902 3903 3903 #: src/screens/Onboarding/StepFinished.tsx:336 3904 3904 msgid "Free your feed" 3905 - msgstr "" 3905 + msgstr "Liberu vian fluon" 3906 3906 3907 3907 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54 3908 3908 #: src/lib/moderation/useReportOptions.ts:54 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Donu vizaĝon al via profilo" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Helpo" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Afiŝu foton aŭ kreu profilbildon por ke homoj sciu, ke vi ne estas roboto." 4167 4167 ··· 4662 4662 #: src/screens/Settings/components/ChangeHandleDialog.tsx:277 4663 4663 msgctxt "english-only-resource" 4664 4664 msgid "Learn more" 4665 - msgstr "" 4665 + msgstr "Ekscii pli" 4666 4666 4667 4667 #: src/components/moderation/ScreenHider.tsx:140 4668 4668 msgid "Learn More" ··· 4702 4702 #: src/components/verification/VerifierDialog.tsx:118 4703 4703 msgctxt "english-only-resource" 4704 4704 msgid "Learn more about verification on Bluesky" 4705 - msgstr "" 4705 + msgstr "Ekscii pli pri konfirmado ĉe Bluesky" 4706 4706 4707 4707 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 4708 4708 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Novaj afiŝoj de {firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "Nova startpako" 5485 5485 ··· 5533 5533 5534 5534 #: src/screens/Onboarding/StepFinished.tsx:356 5535 5535 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." 5536 - msgstr "" 5536 + msgstr "Sen reklamoj, sen enpenetra spurado, sen okupo-kaptiloj. Bluesky respektas vian tempon kaj atenton." 5537 5537 5538 5538 #: src/screens/Settings/AppPasswords.tsx:108 5539 5539 msgid "No app passwords yet" ··· 5576 5576 5577 5577 #: src/screens/Onboarding/StepFinished.tsx:338 5578 5578 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." 5579 - msgstr "" 5579 + msgstr "Ne plu da eterna rulumado tra aĉaĵo-plenaj algoritmoj. Trovu fluojn kiuj funkcias por vi, ne kontraŭ vi." 5580 5580 5581 5581 #: src/view/com/notifications/NotificationFeed.tsx:122 5582 5582 msgid "No notifications yet!" ··· 5750 5750 msgid "now" 5751 5751 msgstr "nun" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Nun" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Al unu aŭ pli da videaĵoj mankas alternativa teksto." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Nur dosieroj .jpg kaj .png estas subtenataj" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Nur sekvantoj kiujn mi sekvas" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Nur bildaj dosieroj estas subtenataj" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Malfermi" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Malfermi la profilbildan kreilon" 5872 5872 ··· 6771 6771 6772 6772 #: src/view/com/composer/select-language/SelectPostLanguagesDialog.tsx:274 6773 6773 msgid "Recently used" 6774 - msgstr "" 6774 + msgstr "Laste uzitaj" 6775 6775 6776 6776 #: src/screens/Search/modules/ExploreRecommendations.tsx:54 6777 6777 msgid "Recommended" ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Forigis el konservitaj fluoj" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "Forigita el la startpako" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Reprovas la lastan agon, kiu eraris" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 7384 7384 7385 7385 #: src/components/InterestTabs.tsx:250 7386 7386 msgid "Scroll left" 7387 - msgstr "" 7387 + msgstr "Rulumi maldekstren" 7388 7388 7389 7389 #: src/components/InterestTabs.tsx:284 7390 7390 msgid "Scroll right" 7391 - msgstr "" 7391 + msgstr "Rulumi dekstren" 7392 7392 7393 7393 #: src/view/screens/ProfileList.tsx:996 7394 7394 msgid "Scroll to top" ··· 7419 7419 #. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected. 7420 7420 #: src/components/ProgressGuide/FollowDialog.tsx:425 7421 7421 msgid "Search for \"{interestsDisplayName}\"" 7422 - msgstr "" 7422 + msgstr "Serĉi \"{interestsDisplayName}\"" 7423 7423 7424 7424 #. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected. 7425 7425 #: src/components/ProgressGuide/FollowDialog.tsx:418 7426 7426 msgid "Search for \"{interestsDisplayName}\" (active)" 7427 - msgstr "" 7427 + msgstr "Serĉi \"{interestsDisplayName}\" (aktiva)" 7428 7428 7429 7429 #: src/view/shell/desktop/Search.tsx:131 7430 7430 msgid "Search for \"{query}\"" ··· 7461 7461 #: src/view/com/composer/select-language/SelectPostLanguagesDialog.tsx:257 7462 7462 #: src/view/com/composer/select-language/SelectPostLanguagesDialog.tsx:258 7463 7463 msgid "Search languages" 7464 - msgstr "" 7464 + msgstr "Serĉi lingvojn" 7465 7465 7466 7466 #: src/screens/Profile/ProfileSearch.tsx:36 7467 7467 msgid "Search my posts" ··· 7534 7534 #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. 7535 7535 #: src/components/InterestTabs.tsx:332 7536 7536 msgid "Select \"{interestsDisplayName}\" category" 7537 - msgstr "" 7537 + msgstr "Elekti kategorion \"{interestsDisplayName}\"" 7538 7538 7539 7539 #. Accessibility label for a username suggestion in the account creation flow 7540 7540 #: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 ··· 7634 7634 7635 7635 #: src/view/com/composer/select-language/SelectPostLanguagesDialog.tsx:236 7636 7636 msgid "Select up to 3 languages used in this post" 7637 - msgstr "" 7637 + msgstr "Elektu ĝis 3 lingvojn uzitajn en ĉi tiu afiŝo" 7638 7638 7639 7639 #: src/components/dialogs/MutedWords.tsx:242 7640 7640 msgid "Select what content this mute word should apply to." ··· 8876 8876 8877 8877 #: src/components/dialogs/BirthDateSettings.tsx:45 8878 8878 msgid "This information is private and not shared with other users." 8879 - msgstr "" 8879 + msgstr "Ĉi tiuj informoj estas privataj kaj ne montrataj al aliaj uzantoj." 8880 8880 8881 8881 #: src/components/live/EditLiveDialog.tsx:189 8882 8882 #: src/components/live/GoLiveDialog.tsx:160 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Ĝisdatigado..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Alŝuti foton anstataŭe" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Vi ne havas listojn." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "Vi havas neniun startpakon." 10364 10364 ··· 10421 10421 10422 10422 #: src/components/dialogs/BirthDateSettings.tsx:131 10423 10423 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service</0> for more information." 10424 - msgstr "" 10424 + msgstr "Vi devas aĝi almenaŭ 13 jarojn por uzi Bluesky. Legu niajn <0>uzokondiĉojn</0> por pliaj informoj." 10425 10425 10426 10426 #: src/components/StarterPack/ProfileStarterPacks.tsx:334 10427 10427 msgid "You must be following at least seven other people to generate a starter pack." ··· 10711 10711 10712 10712 #: src/screens/Onboarding/StepFinished.tsx:422 10713 10713 msgid "Your profile picture" 10714 - msgstr "" 10714 + msgstr "Via profilbildo" 10715 10715 10716 10716 #: src/screens/Onboarding/StepFinished.tsx:350 10717 10717 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" 10718 - msgstr "" 10718 + msgstr "Via profilbildo ĉirkaŭita per samcentraj cirkloj de profilbildoj de aliaj uzantoj" 10719 10719 10720 10720 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 10721 10721 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."
+33 -33
src/locale/locales/es/messages.po
··· 8 8 "Language: es\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Spanish\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, one {}other {# personas han}} usado este paquete de inicio." 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Añadir" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Añadir a las listas" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Añadido a la lista" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Haz clic para abrir el menú de etiquetas de {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Clic para reintentar mensaje fallido" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Continuar" ··· 2192 2192 msgstr "Continuar hilo..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Crear" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Crear una cuenta sin usar este paquete de inicio" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Crea un avatar" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Crea un reporte de {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Error al añadir una reacción de emoji" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Error al eliminar una reacción de emoji" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Error al guardar tus intereses." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Error al enviar" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Ponle cara a tu perfil" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Ayuda" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Sube una foto o crea un avatar para que la gente sepa que no eres un bot." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "ahora" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Ahora" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Falta el texto alternativo en uno o más videos." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Solo se admiten archivos .jpg y .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Solo seguidores a quienes sigo" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Solo se admiten archivos de imagen" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Abierto" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Abrir el creador de avatares" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Eliminado de mis feeds guardados" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Reintenta la última acción, que presentó un error" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Actualizando..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Sube una foto en su lugar" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "No tienes listas." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+85 -85
src/locale/locales/eu/messages.po
··· 8 8 "Language: eu\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Basque\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 21 21 #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. 22 22 #: src/components/InterestTabs.tsx:325 23 23 msgid "\"{interestsDisplayName}\" category (active)" 24 - msgstr "" 24 + msgstr "\"{interestsDisplayName}\" kategoria (aktiboa)" 25 25 26 26 #: src/screens/Messages/components/ChatListItem.tsx:160 27 27 msgid "(contains embedded content)" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# pertsonek}} erabili dute abio multzo hau!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 - msgstr "" 130 + msgstr "{0, plural, other {+# gehiago}}" 131 131 132 132 #. Pattern: {wordValue} in tags 133 133 #: src/components/dialogs/MutedWords.tsx:475 ··· 524 524 525 525 #: src/screens/Onboarding/StepFinished.tsx:341 526 526 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" 527 - msgstr "" 527 + msgstr "Bluesky-n aurki ditzakezun feed ezagunen bilduma bat, besteak beste, News, Booksky, Game Dev, Blacksky eta Fountain Pens" 528 528 529 529 #. If last message does not contain text, fall back to "{user} reacted to {a message}" 530 530 #: src/screens/Messages/components/ChatListItem.tsx:210 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Gehitu" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Gehitu zerrendetara" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" 789 - msgstr "" 789 + msgstr "Gehitu abio multzoei" 790 790 791 791 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:156 792 792 msgid "Add user to list" ··· 797 797 msgid "Added to list" 798 798 msgstr "Zerrendara gehitua" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 - msgstr "" 802 + msgstr "Abio multzora gehituta" 803 803 804 804 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 805 805 msgid "Additional details (limit 1000 characters)" ··· 964 964 965 965 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:176 966 966 msgid "An error occurred while fetching suggested accounts." 967 - msgstr "" 967 + msgstr "Errore bat gertatu da iradokitako kontuak eskuratzean." 968 968 969 969 #: src/state/queries/explore-feed-previews.tsx:173 970 970 msgid "An error occurred while fetching the feed." ··· 997 997 998 998 #: src/screens/Onboarding/StepFinished.tsx:359 999 999 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" 1000 - msgstr "" 1000 + msgstr "Hainbat Bluesky-ren posten ilustrazioa, berposta, atsegin dut eta iruzkin ikonoekin batera" 1001 1001 1002 1002 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:84 1003 1003 #: src/components/verification/VerifierDialog.tsx:86 ··· 1690 1690 1691 1691 #: src/screens/Settings/components/ChangePasswordDialog.tsx:164 1692 1692 msgid "Change password dialog" 1693 - msgstr "" 1693 + msgstr "Pasahitza aldatzeko elkarrizketa-koadroa" 1694 1694 1695 1695 #: src/view/com/composer/select-language/SuggestedLanguage.tsx:98 1696 1696 msgid "Change post language to {suggestedLanguageName}" ··· 1702 1702 1703 1703 #: src/screens/Settings/components/ChangePasswordDialog.tsx:57 1704 1704 msgid "Change your password" 1705 - msgstr "" 1705 + msgstr "Aldatu zure pasahitza" 1706 1706 1707 1707 #: src/screens/Settings/AppIconSettings/index.tsx:216 1708 1708 msgid "Changes app icon" ··· 1808 1808 1809 1809 #: src/view/com/composer/select-language/SelectPostLanguagesDialog.tsx:226 1810 1810 msgid "Choose Post Languages" 1811 - msgstr "" 1811 + msgstr "Aukeratu posten hizkuntza" 1812 1812 1813 1813 #: src/screens/Onboarding/StepFinished.tsx:575 1814 1814 msgid "Choose the algorithms that power your custom feeds." ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Egin klik hemen {tag}-ren etiketa-menua irekitzeko" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Jarraitu" ··· 2192 2192 msgstr "Jarraitu haria..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Sortu" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Sortu kontu bat abio multzo hau erabili gabe" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Sortu abatar bat horren ordez" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Sortu salaketa {0}rentzat" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 - msgstr "" 2450 + msgstr "Sortu abio multzoa" 2451 2451 2452 2452 #: src/screens/Settings/AppPasswords.tsx:174 2453 2453 msgid "Created {0}" ··· 2772 2772 2773 2773 #: src/screens/Onboarding/StepFinished.tsx:347 2774 2774 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." 2775 - msgstr "" 2775 + msgstr "Utzi troll-ak eta klik egiteko amua. Aurkitu zuretzat garrantzitsuak diren benetako pertsonak eta elkarrizketak." 2776 2776 2777 2777 #: src/screens/Settings/components/ChangeHandleDialog.tsx:402 2778 2778 #: src/screens/Settings/components/ChangeHandleDialog.tsx:404 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Errorea emoji erreakzioa gehitzean" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 - msgstr "" 3387 + msgstr "Ezin izan da abio multzora gehitu" 3388 3388 3389 3389 #: src/screens/Settings/components/ChangeHandleDialog.tsx:597 3390 3390 msgid "Failed to change handle. Please try again." ··· 3427 3427 3428 3428 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:126 3429 3429 msgid "Failed to follow all suggested accounts, please try again" 3430 - msgstr "" 3430 + msgstr "Ezin izan dira iradokitako kontu guztiak jarraitu, mesedez, saiatu berriro" 3431 3431 3432 3432 #: src/screens/Messages/ChatList.tsx:270 3433 3433 #: src/screens/Messages/Inbox.tsx:208 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Errorea emoji errakzioa kentzerakoan" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 - msgstr "" 3497 + msgstr "Ezin izan da abio multzotik kendu" 3498 3498 3499 3499 #: src/components/verification/VerificationRemovePrompt.tsx:34 3500 3500 msgid "Failed to remove verification" ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Ezin izan dira zure interesak gorde." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Ezin izan da bidali" 3519 3519 ··· 3606 3606 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:288 3607 3607 msgctxt "toast" 3608 3608 msgid "Feedback sent to feed operator" 3609 - msgstr "" 3609 + msgstr "Iritzia feedaren operadoreari bidali zaio" 3610 3610 3611 3611 #: src/Navigation.tsx:573 3612 3612 #: src/screens/Search/SearchResults.tsx:73 ··· 3684 3684 3685 3685 #: src/screens/Onboarding/StepFinished.tsx:345 3686 3686 msgid "Find your people" 3687 - msgstr "" 3687 + msgstr "Aurkitu zure jendea" 3688 3688 3689 3689 #: src/screens/StarterPack/Wizard/index.tsx:218 3690 3690 msgid "Finish" ··· 3759 3759 3760 3760 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:232 3761 3761 msgid "Follow all accounts" 3762 - msgstr "" 3762 + msgstr "Jarraitu kontu guztiak" 3763 3763 3764 3764 #. User is not following this account, click to follow back 3765 3765 #: src/components/ProfileCard.tsx:518 ··· 3775 3775 3776 3776 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:121 3777 3777 msgid "Followed all accounts!" 3778 - msgstr "" 3778 + msgstr "Kontu guztiak jarraituta!" 3779 3779 3780 3780 #: src/components/KnownFollowers.tsx:238 3781 3781 msgid "Followed by <0>{0}</0>" ··· 3885 3885 3886 3886 #: src/screens/Onboarding/StepFinished.tsx:354 3887 3887 msgid "Forget the noise" 3888 - msgstr "" 3888 + msgstr "Ahaztu zarata" 3889 3889 3890 3890 #: src/screens/Login/index.tsx:153 3891 3891 #: src/screens/Login/index.tsx:168 ··· 3902 3902 3903 3903 #: src/screens/Onboarding/StepFinished.tsx:336 3904 3904 msgid "Free your feed" 3905 - msgstr "" 3905 + msgstr "Askatu zure feeda" 3906 3906 3907 3907 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54 3908 3908 #: src/lib/moderation/useReportOptions.ts:54 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Eman aurpegia zure profilari" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Laguntza" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Lagundu jendeari jakiten ez zarela bot bat argazki bat kargatuz edo abatar bat sortuz." 4167 4167 ··· 4548 4548 4549 4549 #: src/screens/StarterPack/Wizard/index.tsx:491 4550 4550 msgid "It's just <0>{0} </0>right now! Add more people to your starter pack by searching above." 4551 - msgstr "" 4551 + msgstr "Oraintxe <0>{0}</0> bakarrik dago! Gehitu jende gehiago zure abio multzoari goiko bilaketan." 4552 4552 4553 4553 #: src/screens/StarterPack/Wizard/index.tsx:486 4554 4554 msgid "It's just you right now! Add more people to your starter pack by searching above." ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}}-ren post berriak" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 - msgstr "" 5484 + msgstr "Abio multzo berria" 5485 5485 5486 5486 #: src/components/NewskieDialog.tsx:83 5487 5487 msgid "New user info dialog" ··· 5533 5533 5534 5534 #: src/screens/Onboarding/StepFinished.tsx:356 5535 5535 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." 5536 - msgstr "" 5536 + msgstr "Iragarkirik ez, jarraipen inbaditzailerik ez, parte-hartze tranparik ez. Bluesky-k zure denbora eta arreta errespetatzen ditu." 5537 5537 5538 5538 #: src/screens/Settings/AppPasswords.tsx:108 5539 5539 msgid "No app passwords yet" ··· 5576 5576 5577 5577 #: src/screens/Onboarding/StepFinished.tsx:338 5578 5578 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." 5579 - msgstr "" 5579 + msgstr "Zaborrez betetako algoritmo masibo gehiagorik ez. Aurkitu zure alde funtzionatzen duten feedak, ez zure aurka." 5580 5580 5581 5581 #: src/view/com/notifications/NotificationFeed.tsx:122 5582 5582 msgid "No notifications yet!" ··· 5750 5750 msgid "now" 5751 5751 msgstr "orain" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Orain" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Bideo bati edo gehiagori aukerazko testua falta zaio." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr ".jpg eta .png fitxategiak soilik onartzen dira" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Jarraitzen ditudan jarraitzaileak bakarrik" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Irudi-fitxategiak soilik onartzen dira" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Ireki" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Ireki abatar sortzailea" 5872 5872 ··· 6020 6020 6021 6021 #: src/view/com/composer/select-language/SelectPostLanguagesDialog.tsx:58 6022 6022 msgid "Opens post language settings" 6023 - msgstr "" 6023 + msgstr "Postaren hizkuntza ezarpenak irekitzen ditu" 6024 6024 6025 6025 #: src/view/com/notifications/NotificationFeedItem.tsx:906 6026 6026 #: src/view/com/util/UserAvatar.tsx:594 ··· 6311 6311 6312 6312 #: src/screens/Settings/components/ChangePasswordDialog.tsx:65 6313 6313 msgid "Please enter the code you received and the new password you would like to use." 6314 - msgstr "" 6314 + msgstr "Mesedez, sartu jaso duzun kodea eta erabili nahi duzun pasahitz berria." 6315 6315 6316 6316 #: src/components/dialogs/EmailDialog/screens/Update.tsx:247 6317 6317 msgid "Please enter the security code we sent to your previous email address." ··· 6458 6458 #. Accessibility label for button that opens dialog to choose post language settings 6459 6459 #: src/view/com/composer/select-language/SelectPostLanguagesDialog.tsx:53 6460 6460 msgid "Post language selection" 6461 - msgstr "" 6461 + msgstr "Postaren hizkuntza hautatzea" 6462 6462 6463 6463 #: src/screens/PostThread/components/ThreadError.tsx:32 6464 6464 #: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 ··· 6771 6771 6772 6772 #: src/view/com/composer/select-language/SelectPostLanguagesDialog.tsx:274 6773 6773 msgid "Recently used" 6774 - msgstr "" 6774 + msgstr "Duela gutxi erabilia" 6775 6775 6776 6776 #: src/screens/Search/modules/ExploreRecommendations.tsx:54 6777 6777 msgid "Recommended" ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Gordetako feedetatik kenduta" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 - msgstr "" 6936 + msgstr "Abio multzotik kenduta" 6937 6937 6938 6938 #: src/screens/Profile/components/ProfileFeedHeader.tsx:122 6939 6939 #: src/view/com/posts/FeedShutdownMsg.tsx:44 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Azken ekintza berriro saiatzen da, errorea izan duena" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 7384 7384 7385 7385 #: src/components/InterestTabs.tsx:250 7386 7386 msgid "Scroll left" 7387 - msgstr "" 7387 + msgstr "Joan ezkerrera" 7388 7388 7389 7389 #: src/components/InterestTabs.tsx:284 7390 7390 msgid "Scroll right" 7391 - msgstr "" 7391 + msgstr "Joan eskuinera" 7392 7392 7393 7393 #: src/view/screens/ProfileList.tsx:996 7394 7394 msgid "Scroll to top" ··· 7424 7424 #. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected. 7425 7425 #: src/components/ProgressGuide/FollowDialog.tsx:418 7426 7426 msgid "Search for \"{interestsDisplayName}\" (active)" 7427 - msgstr "" 7427 + msgstr "Bilatu \"{interestsDisplayName}\" (aktiboa)" 7428 7428 7429 7429 #: src/view/shell/desktop/Search.tsx:131 7430 7430 msgid "Search for \"{query}\"" ··· 7461 7461 #: src/view/com/composer/select-language/SelectPostLanguagesDialog.tsx:257 7462 7462 #: src/view/com/composer/select-language/SelectPostLanguagesDialog.tsx:258 7463 7463 msgid "Search languages" 7464 - msgstr "" 7464 + msgstr "Bilatu hizkuntzak" 7465 7465 7466 7466 #: src/screens/Profile/ProfileSearch.tsx:36 7467 7467 msgid "Search my posts" ··· 7534 7534 #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. 7535 7535 #: src/components/InterestTabs.tsx:332 7536 7536 msgid "Select \"{interestsDisplayName}\" category" 7537 - msgstr "" 7537 + msgstr "Hautatu \"{interestsDisplayName}\" kategoria" 7538 7538 7539 7539 #. Accessibility label for a username suggestion in the account creation flow 7540 7540 #: src/screens/Signup/StepHandle/HandleSuggestions.tsx:42 ··· 7634 7634 7635 7635 #: src/view/com/composer/select-language/SelectPostLanguagesDialog.tsx:236 7636 7636 msgid "Select up to 3 languages used in this post" 7637 - msgstr "" 7637 + msgstr "Hautatu post honetan erabilitako gehienez 3 hizkuntza" 7638 7638 7639 7639 #: src/components/dialogs/MutedWords.tsx:242 7640 7640 msgid "Select what content this mute word should apply to." ··· 8108 8108 #: src/screens/Onboarding/StepFinished.tsx:373 8109 8109 #: src/screens/Onboarding/StepFinished.tsx:459 8110 8110 msgid "Skip introduction and start using your account" 8111 - msgstr "" 8111 + msgstr "Saltatu sarrera eta hasi zure kontua erabiltzen" 8112 8112 8113 8113 #: src/screens/Onboarding/StepInterests/index.tsx:237 8114 8114 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 ··· 8572 8572 8573 8573 #: src/components/dialogs/BirthDateSettings.tsx:122 8574 8574 msgid "The birthdate you've entered means you are under 18 years old. Certain content and features may be unavailable to you." 8575 - msgstr "" 8575 + msgstr "Sartu duzun jaiotze-datak 18 urtetik beherakoa zarela esan nahi du. Baliteke eduki eta funtzio batzuk ez izatea erabilgarri zuretzat." 8576 8576 8577 8577 #: src/screens/Moderation/index.tsx:426 8578 8578 msgid "The Bluesky web application" ··· 8624 8624 8625 8625 #: src/components/LoggedOutCTA.tsx:63 8626 8626 msgid "The open social network." 8627 - msgstr "" 8627 + msgstr "Sare sozial irekia." 8628 8628 8629 8629 #: src/view/screens/PrivacyPolicy.tsx:35 8630 8630 msgid "The Privacy Policy has been moved to <0/>" ··· 8805 8805 8806 8806 #: src/screens/Settings/components/ChangePasswordDialog.tsx:144 8807 8807 msgid "This confirmation code is not valid. Please try again." 8808 - msgstr "" 8808 + msgstr "Baieztapen-kode hau ez da baliozkoa. Mesedez, saiatu berriro." 8809 8809 8810 8810 #: src/lib/moderation/useGlobalLabelStrings.ts:19 8811 8811 msgid "This content has been hidden by the moderators." ··· 8876 8876 8877 8877 #: src/components/dialogs/BirthDateSettings.tsx:45 8878 8878 msgid "This information is private and not shared with other users." 8879 - msgstr "" 8879 + msgstr "Informazio hau pribatua da eta ez da beste erabiltzaileekin partekatzen." 8880 8880 8881 8881 #: src/components/live/EditLiveDialog.tsx:189 8882 8882 #: src/components/live/GoLiveDialog.tsx:160 ··· 9132 9132 #: src/screens/Settings/components/ChangePasswordDialog.tsx:95 9133 9133 #: src/screens/Settings/components/ChangePasswordDialog.tsx:140 9134 9134 msgid "Unable to contact your service. Please check your internet connection and try again." 9135 - msgstr "" 9135 + msgstr "Ezin da zure zerbitzuarekin harremanetan jarri. Mesedez, egiaztatu zure interneteko konexioa eta saiatu berriro." 9136 9136 9137 9137 #: src/screens/Login/ForgotPasswordForm.tsx:68 9138 9138 #: src/screens/Login/index.tsx:79 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Eguneratzen..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Kargatu argazki bat ordez" 9395 9395 ··· 9706 9706 #: src/view/com/composer/Composer.tsx:545 9707 9707 msgctxt "Action to view the post the user just created" 9708 9708 msgid "View" 9709 - msgstr "" 9709 + msgstr "Ikusi" 9710 9710 9711 9711 #: src/screens/Profile/Header/Shell.tsx:229 9712 9712 msgid "View {0}'s avatar" ··· 9767 9767 9768 9768 #: src/view/com/composer/Composer.tsx:540 9769 9769 msgid "View post" 9770 - msgstr "" 9770 + msgstr "Ikusi posta" 9771 9771 9772 9772 #: src/components/ProfileHoverCard/index.web.tsx:466 9773 9773 #: src/components/ProfileHoverCard/index.web.tsx:486 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Ez duzu zerrendarik." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 - msgstr "" 10363 + msgstr "Ez duzu abio multzorik." 10364 10364 10365 10365 #: src/view/screens/ModerationBlockedAccounts.tsx:164 10366 10366 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." ··· 10421 10421 10422 10422 #: src/components/dialogs/BirthDateSettings.tsx:131 10423 10423 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service</0> for more information." 10424 - msgstr "" 10424 + msgstr "Gutxienez 13 urte izan behar dituzu Bluesky erabiltzeko. Irakurri gure <0>Zerbitzu Baldintzak</0> informazio gehiago lortzeko." 10425 10425 10426 10426 #: src/components/StarterPack/ProfileStarterPacks.tsx:334 10427 10427 msgid "You must be following at least seven other people to generate a starter pack." ··· 10687 10687 10688 10688 #: src/screens/Settings/components/ChangePasswordDialog.tsx:71 10689 10689 msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on." 10690 - msgstr "" 10690 + msgstr "Zure pasahitza behar bezala aldatu da! Mesedez, erabili zure pasahitz berria Bluesky-n saioa hasten duzunean hemendik aurrera." 10691 10691 10692 10692 #: src/screens/Signup/StepInfo/index.tsx:130 10693 10693 msgid "Your password must be at least 8 characters long." ··· 10695 10695 10696 10696 #: src/view/com/composer/Composer.tsx:536 10697 10697 msgid "Your post was sent" 10698 - msgstr "" 10698 + msgstr "Zure posta bidali da" 10699 10699 10700 10700 #: src/view/com/composer/Composer.tsx:533 10701 10701 msgid "Your posts were sent" 10702 - msgstr "" 10702 + msgstr "Zure postak bidali dira" 10703 10703 10704 10704 #: src/screens/Onboarding/StepFinished.tsx:545 10705 10705 msgid "Your posts, likes, and blocks are public. Mutes are private." ··· 10711 10711 10712 10712 #: src/screens/Onboarding/StepFinished.tsx:422 10713 10713 msgid "Your profile picture" 10714 - msgstr "" 10714 + msgstr "Zure profileko argazkia" 10715 10715 10716 10716 #: src/screens/Onboarding/StepFinished.tsx:350 10717 10717 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" 10718 - msgstr "" 10718 + msgstr "Zure profileko argazkia beste erabiltzaileen profileko argazkien zirkulu zentrokidez inguratuta" 10719 10719 10720 10720 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 10721 10721 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." ··· 10723 10723 10724 10724 #: src/view/com/composer/Composer.tsx:535 10725 10725 msgid "Your reply was sent" 10726 - msgstr "" 10726 + msgstr "Zure erantzuna bidali da" 10727 10727 10728 10728 #: src/components/moderation/ReportDialog/index.tsx:394 10729 10729 msgid "Your report will be sent to <0>{0}</0>."
+33 -33
src/locale/locales/fi/messages.po
··· 8 8 "Language: fi\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Finnish\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Lisää" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Lisää listoihin" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Lisätty listaan" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Napsauta tästä avataksesi valikon tunnisteelle {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Napsauta tästä yrittääksesi uudelleen epäonnistunutta viestin lähetystä" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Jatka" ··· 2192 2192 msgstr "Jatka ketjua…" 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Luo" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Luo sen sijaan profiilikuva" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Luo raportti: {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Lähettäminen epäonnistui" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Anna profiilillesi kasvot" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Ohje" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Auta ihmisiä tietämään, ettet ole botti, lataamalla palveluun kuva tai luomalla profiilikuva." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "nyt" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Nyt" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Ainakin yhdeltä videolta puuttuu tekstivastine." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Vain .jpg- ja .png-tiedostoja tuetaan" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Vain kuvatiedostoja tuetaan" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Avoin" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Avaa profiilikuvan luontityökalu" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Poistettu tallennetuista syötteistä" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Päivitetään…" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Lataa palveluun sen sijaan kuva" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Sinulla ei ole listoja." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/fr/messages.po
··· 8 8 "Language: fr\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: French\n" 14 14 "Plural-Forms: nplurals=2; plural=(n > 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, one {# personne a} other {# personnes ont}} utilisé ce kit de démarrage !" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, one {+ # autre} other {+ # autres}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Ajouter" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Ajouter à des listes" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Ajouté à la liste" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "Compte ajouté au kit de démarrage" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Cliquez pour ouvrir le menu de mot-clé pour {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Cliquer pour réessayer l’envoi échoué du message" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Continuer" ··· 2192 2192 msgstr "Poursuivre le fil de discussion…" 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Créer" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Créer un compte sans utiliser ce kit de démarrage" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Créer plutôt un avatar" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Créer un signalement pour {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "Créer un kit de démarrage" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Échec de l’ajout de la réaction émoji" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "Échec de l’ajout au kit de démarrage" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Échec du retrait de la réaction émoji" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "Échec du retrait du kit de démarrage" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Échec de l’enregistrement de vos centres d’intérêt." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Échec de l’envoi" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Donner à votre profil un visage" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Aide" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Aidez les gens à savoir que vous n’êtes pas un bot en envoyant une image ou en créant un avatar." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Nouveaux posts de {firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "Nouveau kit de démarrage" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "maintenant" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Maintenant" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Une ou plusieurs vidéos n’ont pas de texte alt." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Seuls les fichiers .jpg et .png sont acceptés" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Seulement des abonné·e·s que je suis" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Seuls les fichiers d’images sont pris en charge" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Ouvert" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Ouvre le créateur d’avatar" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Supprimé de vos fils d’actu enregistrés" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "Compte retiré du kit de démarrage" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Réessaye la dernière action, qui a échoué" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Mise à jour…" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Envoyer plutôt une photo" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Vous n’avez aucune liste." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "Vous n’avez pas de kit de démarrage." 10364 10364
+33 -33
src/locale/locales/fy/messages.po
··· 8 8 "Language: fy\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Frisian\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, one {}other {# minsken hawwe}} dit startpakket brûkt!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Tafoegje" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Oan listen tafoegje" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Tafoege oan list" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Klik om it labelmenu foar {tag} te iepenjen" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Klik om mislearre priveeberjocht opnij te probearjen" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Trochgean" ··· 2192 2192 msgstr "Fierder lêze…" 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Oanmeitsje" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "In account oanmeitsje sûnder gebrûk fan dit startpakket" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Yn stee dêrfan in avatar meitsje" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Melding meitsje foar {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Tafoegjen emoji-reaksje mislearre" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Fuortsmiten emoji-reaksje mislearre" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Dyn ynteressen bewarje mislearre." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Ferstjoeren mislearre" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Jou dyn profyl in gesicht" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Help" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Lit minsken witte datsto gjin bot bist troch in foto op te laden of in avatar te meitsjen." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Nije berjochten fan {firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "no" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "No" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Alt-tekst ûntbrekt by ien of mear fideo’s." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Allinnich .jpg- en .png-bestannen wurde stipe" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Allinnich folgers dy’t ik folgje" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Allinnich ôfbyldingsbestannen wurde stipe" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Iepenje" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Avatar-makker iepenje" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Ut myn bewarre feeds fuortsmiten" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Werhellet de lêste aksje, dêr’t in flater by barde" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Bywurkje…" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Laad yn stee dêrfan in foto op" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Do hast gjin listen." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/ga/messages.po
··· 8 8 "Language: ga\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Irish\n" 14 14 "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Cuir leis" ··· 782 782 msgid "Add to lists" 783 783 msgstr "" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Curtha leis an liosta" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Lean ar aghaidh" ··· 2192 2192 msgstr "Lean leis an snáithe..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Cruthaigh" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Cruthaigh abhatár nua ina ionad sin" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Cruthaigh tuairisc do {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Teip ar sheoladh" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Tabhair gnúis do do phróifíl" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Cúnamh" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Tabhair le fios dúinn nach bot thú trí pictiúr a uaslódáil nó abhatár a chruthú." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "anois" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Anois" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Téacs malartach de dhíth ar fhíseán nó ar fhíseáin" 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Ní oibríonn ach comhaid .jpg agus .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Ní thacaítear ach le comhaid íomhá" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Oscail" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Oscail an cruthaitheoir abhatáir" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Baineadh de do chuid fothaí sábháilte é" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Á uasdátú…" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Uaslódáil grianghraf in ionad" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Níl aon liostaí agat." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/gd/messages.po
··· 8 8 "Language: gd\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Scottish Gaelic\n" 14 14 "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n>2 && n<20) ? 2 : 3;\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "Chleachd {0, plural, one {# duine} two {# dhuine} few {# daoine} other {# duin}} a’ phacaid tòiseachaidh seo!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Cuir ris" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Cuir ri liosta" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Chaidh a chur ris an liosta" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Dèan briogadh is fosgail clàr-taice nan tagaichean airson {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Dèan briogadh airson feuchainn ris an teachdaireachd a dh’fhàillig as ùr" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Air adhart" ··· 2192 2192 msgstr "Leugh an còrr dhen t-snàithlean…" 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Cruthaich" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Cruthaich cunntas ach as aonais na pacaid tòiseachaidh seo" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Cruthaich avatar na àite" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Cruthaich aithris airson {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Cha b’ urrainn dhuinn an emoji a chur mar fhrith-fhreagairt" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Cha b’ urrainn dhuinn an emoji a chuir thu mar fhrith-fhreagairt a thoirt air falbh" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Cha b’ urrainn dhuinn na rudan sa bheil ùidh agad a shàbhaladh." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Dh’fhàillig a chur" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Cuir aodann ris a’ phròifil agad" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Cobhair" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Dèan nas soilleire e do dhaoine nach e bot a th’ annad le bhith a’ luchdadh suas dealbh no a’ cruthachadh avatar." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Puist ùra o {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "an-dràsta" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "An-dràsta" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon video." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Chan eil taic ach ri faidhlichean .jpg agus .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Dìreach luchd-leantainn a tha mise gan leantainn cuideachd" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Chan eil taic ach ri faidhlichean dhealbhan" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Fosgail" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Fosgail cruthadair nan avatar" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Air a thoirt air falbh o na h-inbhirean a shàbhail thu" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Feuchaidh seo ris a’ ghnìomh mu dheireadh a-rithist is e air fàilligeadh" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Ga ùrachadh…" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Luchdaich suas dealbh an àite sin" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Chan eil liosta sam bith agad." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/gl/messages.po
··· 8 8 "Language: gl\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Galician\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Engadir" ··· 782 782 msgid "Add to lists" 783 783 msgstr "" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Engadido á listaxe" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Premer para abrir o menú de etiquetas para {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Preme para reintentar a mensaxe fallida" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Continuar" ··· 2192 2192 msgstr "Continuar fío..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Crear" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Crea un avatar" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Crea un reporte de {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Error ao enviar" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Dálle ao teu perfil unha cara bonita" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Axuda" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Axuda a que as persoas saiban que non es un bot subindo unha foto ou creando un avatar." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "agora" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Agora" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Falta o texto alternativo nun ou máis vídeos." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Só se admiten ficheiros .jpg e .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Só se admiten ficheiros de imaxe" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Aberto" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Abrir o creador de avatares" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Eliminado das miñas canles gardadas" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Tenta de novo a última acción, que errou" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Actualizando..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Carga unha foto no seu lugar" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Non tes listaxes." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/hi/messages.po
··· 8 8 "Language: hi\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Hindi\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "जोड़ें" ··· 782 782 msgid "Add to lists" 783 783 msgstr "सूचियों में जोड़ें" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "सूची में जोड़ा गया" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "असफल संदेश को फिर से भेजने के लिए क्लिक करें" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "जारी रखें" ··· 2192 2192 msgstr "थ्रेड को जारी रखें..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "बनाएँ" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "इसके बदले अवतार बनाएँ" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "{0} के लिए शिकायत लिखें" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "भेजने में असफल" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "अपने प्रोफ़ाइल को एक चेहरा दें" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "सहायता" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "तस्वीर अपलोड कर के या अवतार बनाकर लोगों को जताएँ की आप एक रोबोट नहीं हैं।" 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "अभी" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "अभी" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "एक या अधिक वीडियो के विवरण नहीं हैं।" 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "केवल .jpg और .png फ़ाइलें समर्थित हैं" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "केवल छवि फाइलें समर्थित हैं" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "खोलें" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "अवतार निर्माता खोलें" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "सहेजे फ़ीड से हटाया गया" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "पिछली क्रिया का फिर से प्रयास करता है, जिसमें त्रुटि हुई" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "अपडेट हो रहा है..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "इसके बदले फ़ोटो अपलोड करें" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "आपकी कोई सूचियाँ नहीं हैं।" 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/hu/messages.po
··· 8 8 "Language: hu\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Hungarian\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, one {}other {#}} személy regisztrált ezzel a kezdőcsomaggal!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, other {+# további}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Felvesz" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Felvétel listára" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Felvetted a felhasználót a listára" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "Profil felvéve" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "A(z) {tag} címke menüjének megnyitása" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Üzenetküldés megkísérlése ismét" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Folytatás" ··· 2192 2192 msgstr "Válaszlánc folytatása…" 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Létrehozás" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Fiók létrehozása a kezdőcsomag igénybevétele nélkül" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Profilkép létrehozása" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Jelentés neki: {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "Kezdőcsomag létrehozása" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Az emoji-reakció hozzáfűzése meghiúsult" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "A kezdőcsomag bővítése meghiúsult" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Az emoji-reakció eltávolítása meghiúsult" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "A kezdőcsomagról levétel meghiúsult" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Az érdeklődési körök mentése meghiúsult." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "A küldés meghiúsult" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Adj arcot a profilodnak!" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Súgó" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Segíts másoknak megbizonyosodni arról, hogy valódi személy vagy egy profilkép létrehozásával!" 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy új bejegyzéseket tett közzé" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "Új kezdőcsomag" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "épp most" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Épp most" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Legalább egy videóról hiányzik a helyettesítő szöveg." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Csak a .jpg és a .png formátumok támogatottak" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Csak a kölcsönös követőktől" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Csak a képfájlok támogatottak" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Megnyitás" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Profilképkészítő megnyitása" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Eltávolítottad a hírfolyamot az elmentett hírfolyamok közül" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "Profil eltávolítva a kezdőcsomagból" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "A legutóbb meghiúsult folyamat újrapróbálása" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9391 9391 msgid "Updating..." 9392 9392 msgstr "Frissítés folyamatban…" 9393 9393 9394 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9394 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9395 9395 msgid "Upload a photo instead" 9396 9396 msgstr "Fénykép feltöltése" 9397 9397 ··· 10360 10360 msgid "You have no lists." 10361 10361 msgstr "Még nincsenek listáid." 10362 10362 10363 - #: src/components/dialogs/StarterPackDialog.tsx:102 10363 + #: src/components/dialogs/StarterPackDialog.tsx:101 10364 10364 msgid "You have no starter packs." 10365 10365 msgstr "Jelenleg nem rendelkezel kezdőcsomagokkal." 10366 10366
+33 -33
src/locale/locales/ia/messages.po
··· 8 8 "Language: ia\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Interlingua\n" 14 14 "Plural-Forms: nplurals=2; plural=(n > 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# personas}} ha usate iste pacchetto de initio!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Adder" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Adder al listas" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Addite al lista" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Clicca pro aperir un menu de etiquetta pro {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Clicca pro tentar inviar le message de novo" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Continuar" ··· 2192 2192 msgstr "Continuar filo..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Crear" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Crear un conto sin usar iste pacchetto de initio" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "In vice, crear un avatar" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Crear un signalamento pro {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Non ha essite possibile adder reaction con emoji" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Non ha essite possibile remover reaction con emoji" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Non ha essite possibile salvar tu interesses." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Non ha essite possibile inviar" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Da un facie a tu profilo" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Adjuta" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Adjuta le personas a saper que tu non es un bot cargante un photo o creante un avatar." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Nove publicationes de {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "ora" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Ora" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Manca texto alternative a un o plus videos." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Solmente files .jpg e .png es supportate" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Solmente sequitores que io seque" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Solmente files de imagine es supportate" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Aperir" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Aperir creator de avatar" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Removite del canales salvate" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Tenta de novo le ultime action, que ha generate un error" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Actualisante..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Incargar un photo in su loco" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Tu non ha listas." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/id/messages.po
··· 8 8 "Language: id\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Indonesian\n" 14 14 "Plural-Forms: nplurals=1; plural=0;\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# orang}} telah menggunakan paket pemula ini!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Tambah" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Tambahkan dalam daftar" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Ditambahkan ke daftar" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Klik untuk membuka menu tagar {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Ketuk untuk mengirim ulang pesan yang gagal" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Lanjutkan" ··· 2192 2192 msgstr "Lanjutkan utas..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Buat" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Buat akun tanpa menggunakan paket pemula ini" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Buat avatar saja" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Buat laporan untuk {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Gagal menambahkan emoji reaksi" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Gagal menghapus emoji reaksi" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Gagal untuk menyimpan minat Anda." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Gagal mengirim" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Beri wajah pada profil Anda" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Bantuan" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Beri tahu orang-orang bahwa Anda bukan bot dengan mengunggah gambar atau membuat avatar." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "sekarang" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Sekarang" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Satu atau beberapa video belum memiliki teks alt." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Hanya mendukung berkas .jpg dan .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Hanya mendukung berkas gambar" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Terbuka" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Buka pembuat avatar" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Dihapus dari feed tersimpan" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Mencoba kembali tindakan terakhir yang gagal" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Memperbarui..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Unggah foto saja" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Anda tidak memiliki daftar." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/it/messages.po
··· 8 8 "Language: it\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Italian\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# persone hanno}} usato questo starter pack!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, other {e altri #}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Aggiungi" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Aggiungi a liste" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Aggiunto alla lista" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "Aggiunto allo starter pack" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Clicca per aprire il menu per {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Clicca per riprovare l'invio" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Continua" ··· 2192 2192 msgstr "Continua thread..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Crea" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Crea un account senza usare questo starter pack" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "In alternativa crea un avatar" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Crea un report per {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "Crea starter pack" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Non è stato possibile aggiungere la reazione" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "Non è stato possibile aggiungere allo starter pack" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Non è stato possibile rimuovere la reazione" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "Non è stato possibile rimuovere dallo starter pack" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Non è stato possibile salvare i tuoi interessi." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Impossibile inviare messaggio" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Dai un volto al tuo profilo" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Aiuto" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Aiuta le persone a sapere che tu non sei un bot caricando una immagine o creando un avatar." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Nuovi post di {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "Nuovo starter pack" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "adesso" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Adesso" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "In uno o più video manca il testo alternativo." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Solo i file .jpg e .png sono supportati" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Solo i follower che seguo" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Sono supportati solo i file immagine" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Aperto" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Apri il creatore di avatar" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Rimosso dai feed salvati" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "Rimosso dallo starter pack" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Ritenta l'ultima azione che ha generato un errore" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Aggiornamento..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "In alternativa carica una foto" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Non hai liste." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "Non hai starter pack." 10364 10364
+33 -33
src/locale/locales/ja/messages.po
··· 8 8 "Language: ja\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Japanese\n" 14 14 "Plural-Forms: nplurals=1; plural=0;\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {#人が}}このスターターパックを使用しました!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, other {+#}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "追加" ··· 782 782 msgid "Add to lists" 783 783 msgstr "リストに追加" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "リストに追加" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "スターターパックへ追加しました" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "クリックして {tag} のタグメニューを表示" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "送信失敗したメッセージを再送信" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "続行" ··· 2192 2192 msgstr "スレッドの続き…" 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "作成" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "このスターターパックを使用せずにアカウントを作成する" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "代わりにアバターを作成" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "{0}の報告を作成" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "スターターパックを作成" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "絵文字リアクションを追加できませんでした" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "スターターパックへの追加に失敗しました" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "絵文字リアクションの削除に失敗しました" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "スターターパックからの削除に失敗しました" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "「気になること」の保存に失敗しました。" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "送信に失敗" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "プロフィールに顔をつける" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "ヘルプ" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "画像をアップロードするかアバターを作ってあなたがbotではないことをみんなに知らせましょう。" 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}からの新しい投稿" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "スターターパックを作成する" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "今" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "今" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "1つもしくは複数のビデオにALTテキストがありません。" 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr ".jpgと.pngファイルのみに対応しています" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "フォロー中のフォロワーのみ" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "画像ファイルのみに対応しています" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "開かれています" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "アバター・クリエイターを開く" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "保存されたフィードから削除しました" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "スターターパックから削除しました" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "エラーになった最後のアクションをやり直す" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "更新中…" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "代わりに写真をアップロード" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "リストがありません。" 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "スターターパックがありません。" 10364 10364
+90 -90
src/locale/locales/kab/messages.po
··· 8 8 "Language: kab\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Kabyle\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 151 151 msgid "{0} is not a valid URL" 152 152 msgstr "" 153 153 154 - #: src/screens/Signup/StepHandle/index.tsx:186 154 + #: src/screens/Signup/StepHandle/index.tsx:189 155 155 msgid "{0} is not available" 156 156 msgstr "" 157 157 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "" ··· 723 723 msgstr "" 724 724 725 725 #. Accessibility label for button in composer to add images, a video, or a GIF to a post 726 - #: src/view/com/composer/SelectMediaButton.tsx:482 726 + #: src/view/com/composer/SelectMediaButton.tsx:468 727 727 msgid "Add media to post" 728 728 msgstr "" 729 729 ··· 782 782 msgid "Add to lists" 783 783 msgstr "" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1043 1043 msgid "and" 1044 1044 msgstr "" 1045 1045 1046 - #: src/screens/Onboarding/index.tsx:43 1046 + #: src/screens/Onboarding/index.tsx:45 1047 1047 #: src/screens/Onboarding/state.ts:102 1048 1048 msgid "Animals" 1049 1049 msgstr "" ··· 1219 1219 msgid "Are you writing in <0>{suggestedLanguageName}</0>?" 1220 1220 msgstr "" 1221 1221 1222 - #: src/screens/Onboarding/index.tsx:37 1222 + #: src/screens/Onboarding/index.tsx:39 1223 1223 #: src/screens/Onboarding/state.ts:103 1224 1224 msgid "Art" 1225 1225 msgstr "" ··· 1487 1487 msgid "Blur images and filter from feeds" 1488 1488 msgstr "" 1489 1489 1490 - #: src/screens/Onboarding/index.tsx:44 1490 + #: src/screens/Onboarding/index.tsx:46 1491 1491 #: src/screens/Onboarding/state.ts:104 1492 1492 msgid "Books" 1493 1493 msgstr "" ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "" 1885 1885 1886 - #: src/screens/Onboarding/index.tsx:46 1886 + #: src/screens/Onboarding/index.tsx:48 1887 1887 msgid "Climate" 1888 1888 msgstr "" 1889 1889 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2014 2014 msgid "Color theme" 2015 2015 msgstr "" 2016 2016 2017 - #: src/screens/Onboarding/index.tsx:52 2017 + #: src/screens/Onboarding/index.tsx:54 2018 2018 #: src/screens/Onboarding/state.ts:105 2019 2019 msgid "Comedy" 2020 2020 msgstr "" 2021 2021 2022 - #: src/screens/Onboarding/index.tsx:38 2022 + #: src/screens/Onboarding/index.tsx:40 2023 2023 #: src/screens/Onboarding/state.ts:106 2024 2024 msgid "Comics" 2025 2025 msgstr "" ··· 2031 2031 msgstr "" 2032 2032 2033 2033 #: src/screens/Onboarding/StepFinished.tsx:473 2034 - #: src/screens/Onboarding/StepFinished.tsx:587 2034 + #: src/screens/Onboarding/StepFinished.tsx:588 2035 2035 msgid "Complete onboarding and start using your account" 2036 2036 msgstr "" 2037 2037 ··· 2173 2173 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 - #: src/screens/Onboarding/StepInterests/index.tsx:253 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:277 2176 + #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:278 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "" ··· 2191 2191 msgid "Continue thread..." 2192 2192 msgstr "" 2193 2193 2194 - #: src/screens/Onboarding/StepInterests/index.tsx:250 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:274 2194 + #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:275 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2212 2212 msgid "Conversation deleted" 2213 2213 msgstr "" 2214 2214 2215 - #: src/screens/Onboarding/index.tsx:55 2215 + #: src/screens/Onboarding/index.tsx:57 2216 2216 msgid "Cooking" 2217 2217 msgstr "" 2218 2218 ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:291 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:293 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2457 2457 msgid "Creator has been blocked" 2458 2458 msgstr "" 2459 2459 2460 - #: src/screens/Onboarding/index.tsx:40 2460 + #: src/screens/Onboarding/index.tsx:42 2461 2461 #: src/screens/Onboarding/state.ts:107 2462 2462 msgid "Culture" 2463 2463 msgstr "" ··· 2734 2734 msgid "Discover new custom feeds" 2735 2735 msgstr "" 2736 2736 2737 - #: src/screens/Search/Explore.tsx:434 2737 + #: src/screens/Search/Explore.tsx:435 2738 2738 #: src/view/screens/Feeds.tsx:730 2739 2739 msgid "Discover New Feeds" 2740 2740 msgstr "" ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:329 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:332 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:334 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3005 3005 msgid "Edit your starter pack" 3006 3006 msgstr "" 3007 3007 3008 - #: src/screens/Onboarding/index.tsx:45 3008 + #: src/screens/Onboarding/index.tsx:47 3009 3009 #: src/screens/Onboarding/state.ts:109 3010 3010 msgid "Education" 3011 3011 msgstr "" ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3434 3434 msgid "Failed to load conversations" 3435 3435 msgstr "" 3436 3436 3437 - #: src/screens/Search/Explore.tsx:470 3438 - #: src/screens/Search/Explore.tsx:522 3439 - #: src/screens/Search/Explore.tsx:560 3440 - #: src/screens/Search/Explore.tsx:599 3437 + #: src/screens/Search/Explore.tsx:471 3438 + #: src/screens/Search/Explore.tsx:523 3439 + #: src/screens/Search/Explore.tsx:561 3440 + #: src/screens/Search/Explore.tsx:600 3441 3441 msgid "Failed to load feeds preferences" 3442 3442 msgstr "" 3443 3443 ··· 3467 3467 msgid "Failed to load preference." 3468 3468 msgstr "" 3469 3469 3470 - #: src/screens/Search/Explore.tsx:463 3471 - #: src/screens/Search/Explore.tsx:515 3472 - #: src/screens/Search/Explore.tsx:553 3473 - #: src/screens/Search/Explore.tsx:592 3470 + #: src/screens/Search/Explore.tsx:464 3471 + #: src/screens/Search/Explore.tsx:516 3472 + #: src/screens/Search/Explore.tsx:554 3473 + #: src/screens/Search/Explore.tsx:593 3474 3474 msgid "Failed to load suggested feeds" 3475 3475 msgstr "" 3476 3476 3477 - #: src/screens/Search/Explore.tsx:373 3477 + #: src/screens/Search/Explore.tsx:374 3478 3478 msgid "Failed to load suggested follows" 3479 3479 msgstr "" 3480 3480 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "" 3519 3519 ··· 3662 3662 msgstr "" 3663 3663 3664 3664 #: src/screens/Onboarding/StepFinished.tsx:479 3665 - #: src/screens/Onboarding/StepFinished.tsx:590 3665 + #: src/screens/Onboarding/StepFinished.tsx:591 3666 3666 msgid "Finalizing" 3667 3667 msgstr "" 3668 3668 ··· 3690 3690 msgid "Finish" 3691 3691 msgstr "" 3692 3692 3693 - #: src/screens/Onboarding/index.tsx:49 3693 + #: src/screens/Onboarding/index.tsx:51 3694 3694 msgid "Fitness" 3695 3695 msgstr "" 3696 3696 ··· 3853 3853 msgid "Font size" 3854 3854 msgstr "" 3855 3855 3856 - #: src/screens/Onboarding/index.tsx:54 3856 + #: src/screens/Onboarding/index.tsx:56 3857 3857 #: src/screens/Onboarding/state.ts:110 3858 3858 msgid "Food" 3859 3859 msgstr "" ··· 4576 4576 msgid "Join the conversation" 4577 4577 msgstr "" 4578 4578 4579 - #: src/screens/Onboarding/index.tsx:35 4579 + #: src/screens/Onboarding/index.tsx:37 4580 4580 #: src/screens/Onboarding/state.ts:112 4581 4581 msgid "Journalism" 4582 4582 msgstr "" ··· 4758 4758 msgstr "" 4759 4759 4760 4760 #: src/screens/Onboarding/StepFinished.tsx:481 4761 - #: src/screens/Onboarding/StepFinished.tsx:590 4761 + #: src/screens/Onboarding/StepFinished.tsx:591 4762 4762 msgid "Let's go!" 4763 4763 msgstr "" 4764 4764 ··· 4943 4943 msgid "Live link" 4944 4944 msgstr "" 4945 4945 4946 - #: src/screens/Search/Explore.tsx:86 4946 + #: src/screens/Search/Explore.tsx:87 4947 4947 msgid "Load more" 4948 4948 msgstr "" 4949 4949 4950 - #: src/screens/Search/Explore.tsx:504 4951 - #: src/screens/Search/Explore.tsx:581 4950 + #: src/screens/Search/Explore.tsx:505 4951 + #: src/screens/Search/Explore.tsx:582 4952 4952 msgid "Load more suggested feeds" 4953 4953 msgstr "" 4954 4954 ··· 5344 5344 msgid "Name or Description Violates Community Standards" 5345 5345 msgstr "" 5346 5346 5347 - #: src/screens/Onboarding/index.tsx:36 5347 + #: src/screens/Onboarding/index.tsx:38 5348 5348 #: src/screens/Onboarding/state.ts:115 5349 5349 msgid "Nature" 5350 5350 msgstr "" ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5498 5498 msgid "Newest replies first" 5499 5499 msgstr "" 5500 5500 5501 - #: src/screens/Onboarding/index.tsx:34 5501 + #: src/screens/Onboarding/index.tsx:36 5502 5502 #: src/screens/Onboarding/state.ts:116 5503 5503 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:238 5504 5504 msgid "News" ··· 5620 5620 msgid "No results" 5621 5621 msgstr "" 5622 5622 5623 - #: src/screens/Search/Explore.tsx:786 5623 + #: src/screens/Search/Explore.tsx:787 5624 5624 msgid "No results for \"{0}\"." 5625 5625 msgstr "" 5626 5626 ··· 5638 5638 msgid "No results found for {query}" 5639 5639 msgstr "" 5640 5640 5641 - #: src/screens/Search/Explore.tsx:790 5641 + #: src/screens/Search/Explore.tsx:791 5642 5642 msgid "No results." 5643 5643 msgstr "" 5644 5644 ··· 5750 5750 msgid "now" 5751 5751 msgstr "" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "" 5756 5756 ··· 5815 5815 msgid "One or more images is missing alt text." 5816 5816 msgstr "" 5817 5817 5818 - #: src/view/com/composer/SelectMediaButton.tsx:390 5818 + #: src/view/com/composer/SelectMediaButton.tsx:387 5819 5819 msgid "One or more of your selected files are not supported." 5820 5820 msgstr "" 5821 5821 5822 - #: src/view/com/composer/SelectMediaButton.tsx:413 5822 + #: src/view/com/composer/SelectMediaButton.tsx:410 5823 5823 msgid "One or more of your selected files are too large. Maximum size is 100 MB." 5824 5824 msgstr "" 5825 5825 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:28 5844 + #: src/lib/media/picker.shared.ts:31 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:285 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:287 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "" 5872 5872 ··· 5976 5976 msgstr "" 5977 5977 5978 5978 #. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. 5979 - #: src/view/com/composer/SelectMediaButton.tsx:488 5979 + #: src/view/com/composer/SelectMediaButton.tsx:474 5980 5980 msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." 5981 5981 msgstr "" 5982 5982 ··· 6157 6157 msgid "Person toggle" 6158 6158 msgstr "" 6159 6159 6160 - #: src/screens/Onboarding/index.tsx:42 6160 + #: src/screens/Onboarding/index.tsx:44 6161 6161 #: src/screens/Onboarding/state.ts:117 6162 6162 msgid "Pets" 6163 6163 msgstr "" ··· 6384 6384 msgid "Please write your message below:" 6385 6385 msgstr "" 6386 6386 6387 - #: src/screens/Onboarding/index.tsx:48 6387 + #: src/screens/Onboarding/index.tsx:50 6388 6388 #: src/screens/Onboarding/state.ts:119 6389 6389 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:232 6390 6390 msgid "Politics" ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 7377 7377 msgid "Say hello!" 7378 7378 msgstr "" 7379 7379 7380 - #: src/screens/Onboarding/index.tsx:47 7380 + #: src/screens/Onboarding/index.tsx:49 7381 7381 #: src/screens/Onboarding/state.ts:120 7382 7382 msgid "Science" 7383 7383 msgstr "" ··· 7438 7438 msgid "Search for feeds that you want to suggest to others." 7439 7439 msgstr "" 7440 7440 7441 - #: src/screens/Search/Explore.tsx:360 7441 + #: src/screens/Search/Explore.tsx:361 7442 7442 msgid "Search for more accounts" 7443 7443 msgstr "" 7444 7444 7445 - #: src/screens/Search/Explore.tsx:437 7445 + #: src/screens/Search/Explore.tsx:438 7446 7446 msgid "Search for more feeds" 7447 7447 msgstr "" 7448 7448 ··· 7665 7665 msgid "Select your preferred notification channels" 7666 7666 msgstr "" 7667 7667 7668 - #: src/view/com/composer/SelectMediaButton.tsx:393 7668 + #: src/view/com/composer/SelectMediaButton.tsx:390 7669 7669 msgid "Selecting multiple media types is not supported." 7670 7670 msgstr "" 7671 7671 ··· 8123 8123 msgid "Snoozes the reminder" 8124 8124 msgstr "" 8125 8125 8126 - #: src/screens/Onboarding/index.tsx:51 8126 + #: src/screens/Onboarding/index.tsx:53 8127 8127 #: src/screens/Onboarding/state.ts:108 8128 8128 msgid "Software Dev" 8129 8129 msgstr "" ··· 8219 8219 msgid "Spam; excessive mentions or replies" 8220 8220 msgstr "" 8221 8221 8222 - #: src/screens/Onboarding/index.tsx:41 8222 + #: src/screens/Onboarding/index.tsx:43 8223 8223 #: src/screens/Onboarding/state.ts:121 8224 8224 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:230 8225 8225 msgid "Sports" ··· 8270 8270 msgid "Starter pack is invalid" 8271 8271 msgstr "" 8272 8272 8273 - #: src/screens/Search/Explore.tsx:628 8273 + #: src/screens/Search/Explore.tsx:629 8274 8274 #: src/view/screens/Profile.tsx:231 8275 8275 msgid "Starter Packs" 8276 8276 msgstr "" ··· 8357 8357 msgid "Successfully verified" 8358 8358 msgstr "" 8359 8359 8360 - #: src/screens/Search/Explore.tsx:357 8360 + #: src/screens/Search/Explore.tsx:358 8361 8361 msgid "Suggested Accounts" 8362 8362 msgstr "" 8363 8363 ··· 8460 8460 msgid "Teach our algorithm what you like" 8461 8461 msgstr "" 8462 8462 8463 - #: src/screens/Onboarding/index.tsx:50 8463 + #: src/screens/Onboarding/index.tsx:52 8464 8464 #: src/screens/Onboarding/state.ts:122 8465 8465 msgid "Tech" 8466 8466 msgstr "" ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:289 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:291 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "" 9395 9395 ··· 9516 9516 msgid "User list updated" 9517 9517 msgstr "" 9518 9518 9519 - #: src/screens/Signup/StepHandle/index.tsx:231 9519 + #: src/screens/Signup/StepHandle/index.tsx:234 9520 9520 msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" 9521 9521 msgstr "" 9522 9522 9523 - #: src/screens/Signup/StepHandle/index.tsx:215 9523 + #: src/screens/Signup/StepHandle/index.tsx:218 9524 9524 msgid "Username cannot begin or end with a hyphen" 9525 9525 msgstr "" 9526 9526 9527 - #: src/screens/Signup/StepHandle/index.tsx:219 9527 + #: src/screens/Signup/StepHandle/index.tsx:222 9528 9528 msgid "Username must only contain letters (a-z), numbers, and hyphens" 9529 9529 msgstr "" 9530 9530 ··· 9665 9665 msgid "Video from {0}: {text}" 9666 9666 msgstr "" 9667 9667 9668 - #: src/screens/Onboarding/index.tsx:53 9668 + #: src/screens/Onboarding/index.tsx:55 9669 9669 #: src/screens/Onboarding/state.ts:111 9670 9670 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:234 9671 9671 msgid "Video Games" ··· 9699 9699 msgid "Videos" 9700 9700 msgstr "" 9701 9701 9702 - #: src/view/com/composer/SelectMediaButton.tsx:407 9702 + #: src/view/com/composer/SelectMediaButton.tsx:404 9703 9703 msgid "Videos must be less than 3 minutes long." 9704 9704 msgstr "" 9705 9705 ··· 10123 10123 msgid "Write your reply" 10124 10124 msgstr "" 10125 10125 10126 - #: src/screens/Onboarding/index.tsx:39 10126 + #: src/screens/Onboarding/index.tsx:41 10127 10127 #: src/screens/Onboarding/state.ts:124 10128 10128 msgid "Writers" 10129 10129 msgstr "" ··· 10257 10257 msgid "You can now sign in with your new password." 10258 10258 msgstr "" 10259 10259 10260 - #: src/view/com/composer/SelectMediaButton.tsx:410 10260 + #: src/view/com/composer/SelectMediaButton.tsx:407 10261 10261 msgid "You can only select one GIF at a time." 10262 10262 msgstr "" 10263 10263 10264 - #: src/view/com/composer/SelectMediaButton.tsx:404 10264 + #: src/view/com/composer/SelectMediaButton.tsx:401 10265 10265 msgid "You can only select one video at a time." 10266 10266 msgstr "" 10267 10267 ··· 10270 10270 msgstr "" 10271 10271 10272 10272 #. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. 10273 - #: src/view/com/composer/SelectMediaButton.tsx:396 10273 + #: src/view/com/composer/SelectMediaButton.tsx:393 10274 10274 msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." 10275 10275 msgstr "" 10276 10276 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "" 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364 ··· 10448 10448 msgid "You must sign in to view this post." 10449 10449 msgstr "" 10450 10450 10451 - #: src/view/com/composer/SelectMediaButton.tsx:439 10451 + #: src/view/com/composer/SelectMediaButton.tsx:436 10452 10452 msgid "You need to allow access to your media library." 10453 10453 msgstr "" 10454 10454
+33 -33
src/locale/locales/km/messages.po
··· 8 8 "Language: km\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Khmer\n" 14 14 "Plural-Forms: nplurals=1; plural=0;\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "បន្ថែម" ··· 782 782 msgid "Add to lists" 783 783 msgstr "បន្ថែមទៅបញ្ជី" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "បានបន្ថែមទៅក្នុងបញ្ជី" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "ចុចដើម្បីព្យាយាមសារដែលបរាជ័យម្តងទៀត" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "បន្ត" ··· 2192 2192 msgstr "បន្ត​ខ្សែ..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "បង្កើត" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "បង្កើតរូបតំណាងជំនួសវិញ" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "បង្កើតរបាយការណ៍សម្រាប់ {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "បរាជ័យក្នុងកាផ្ញើ" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "ផ្តល់ទម្រង់មុខរបស់អ្នក" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "ជំនួយ" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "ជួយមនុស្សឱ្យដឹងថាអ្នកមិនមែនជារូបយន្តដោយការបង្ហោះរូបភាព ឬបង្កើតរូបតំណាង" 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "ឥឡូវនេះ" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "ឥឡូវនេះ" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "វីដេអូមួយ ឬច្រើនបាត់អត្ថបទជំនួស" 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "មានតែឯកសារ .jpg និង .png ប៉ុណ្ណោះដែលត្រូវបានគាំទ្រ" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "មានតែឯកសាររូបភាពប៉ុណ្ណោះដែលត្រូវបានគាំទ្រ" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "បើក" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "បើកអ្នកបង្កើតរូបតំណាង" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "បានលុបចេញពីព័ត៌មានដែលបានរក្សាទុក" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "ព្យាយាមម្តងទៀតនូវសកម្មភាពចុងក្រោយ ដែលវាមានបញ្ហា" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "កំពុងធ្វើបច្ចុប្បន្នភាព..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "បង្ហោះរូបថតជំនួសវិញ" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "អ្នកមិនមានបញ្ជីទេ" 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/ko/messages.po
··· 8 8 "Language: ko\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Korean\n" 14 14 "Plural-Forms: nplurals=1; plural=0;\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {#명}}이 이 스타터 팩을 사용했습니다!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, other {+#명}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "추가" ··· 782 782 msgid "Add to lists" 783 783 msgstr "리스트에 추가" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "리스트에 추가했습니다" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "스타터 팩에 추가했습니다" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "클릭하여 {tag}에 대한 태그 메뉴를 엽니다" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "클릭하여 메시지 다시 보내기" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "계속" ··· 2192 2192 msgstr "스레드 더 보기…" 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "만들기" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "이 스타터 팩을 사용하지 않고 계정 만들기" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "대신 아바타 만들기" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "{0}에 대한 신고 작성하기" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "스타터 팩 만들기" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "이모티콘 반응을 추가하지 못했습니다" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "스타터 팩에 추가하지 못했습니다" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "이모티콘 반응을 제거하지 못했습니다" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "스타터 팩에서 제거하지 못했습니다" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "관심 주제를 저장하지 못했습니다." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "전송 실패" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "프로필에 얼굴 달기" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "도움말" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "사진을 업로드하거나 아바타를 만들어 사람들이 내가 봇이 아니라는 사실을 알 수 있도록 하세요." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}의 새 게시물" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "새 스타터 팩" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "지금" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "지금" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "하나 이상의 동영상에 대체 텍스트가 누락되었습니다." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr ".jpg 및 .png 파일만 지원됩니다" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "내가 팔로우하는 팔로워만" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "이미지 파일만 지원됩니다" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "공개성" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "아바타 생성기 열기" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "저장한 피드에서 제거했습니다" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "스타터 팩에서 제거했습니다" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "오류가 발생한 마지막 작업을 다시 시도합니다" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "업데이트 중…" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "대신 사진 업로드하기" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "리스트가 없습니다." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "스타터 팩이 없습니다." 10364 10364
+90 -90
src/locale/locales/lt/messages.po
··· 8 8 "Language: lt\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Lithuanian\n" 14 14 "Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 151 151 msgid "{0} is not a valid URL" 152 152 msgstr "" 153 153 154 - #: src/screens/Signup/StepHandle/index.tsx:186 154 + #: src/screens/Signup/StepHandle/index.tsx:189 155 155 msgid "{0} is not available" 156 156 msgstr "" 157 157 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "" ··· 723 723 msgstr "" 724 724 725 725 #. Accessibility label for button in composer to add images, a video, or a GIF to a post 726 - #: src/view/com/composer/SelectMediaButton.tsx:482 726 + #: src/view/com/composer/SelectMediaButton.tsx:468 727 727 msgid "Add media to post" 728 728 msgstr "" 729 729 ··· 782 782 msgid "Add to lists" 783 783 msgstr "" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1043 1043 msgid "and" 1044 1044 msgstr "" 1045 1045 1046 - #: src/screens/Onboarding/index.tsx:43 1046 + #: src/screens/Onboarding/index.tsx:45 1047 1047 #: src/screens/Onboarding/state.ts:102 1048 1048 msgid "Animals" 1049 1049 msgstr "" ··· 1219 1219 msgid "Are you writing in <0>{suggestedLanguageName}</0>?" 1220 1220 msgstr "" 1221 1221 1222 - #: src/screens/Onboarding/index.tsx:37 1222 + #: src/screens/Onboarding/index.tsx:39 1223 1223 #: src/screens/Onboarding/state.ts:103 1224 1224 msgid "Art" 1225 1225 msgstr "" ··· 1487 1487 msgid "Blur images and filter from feeds" 1488 1488 msgstr "" 1489 1489 1490 - #: src/screens/Onboarding/index.tsx:44 1490 + #: src/screens/Onboarding/index.tsx:46 1491 1491 #: src/screens/Onboarding/state.ts:104 1492 1492 msgid "Books" 1493 1493 msgstr "" ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "" 1885 1885 1886 - #: src/screens/Onboarding/index.tsx:46 1886 + #: src/screens/Onboarding/index.tsx:48 1887 1887 msgid "Climate" 1888 1888 msgstr "" 1889 1889 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2014 2014 msgid "Color theme" 2015 2015 msgstr "" 2016 2016 2017 - #: src/screens/Onboarding/index.tsx:52 2017 + #: src/screens/Onboarding/index.tsx:54 2018 2018 #: src/screens/Onboarding/state.ts:105 2019 2019 msgid "Comedy" 2020 2020 msgstr "" 2021 2021 2022 - #: src/screens/Onboarding/index.tsx:38 2022 + #: src/screens/Onboarding/index.tsx:40 2023 2023 #: src/screens/Onboarding/state.ts:106 2024 2024 msgid "Comics" 2025 2025 msgstr "" ··· 2031 2031 msgstr "" 2032 2032 2033 2033 #: src/screens/Onboarding/StepFinished.tsx:473 2034 - #: src/screens/Onboarding/StepFinished.tsx:587 2034 + #: src/screens/Onboarding/StepFinished.tsx:588 2035 2035 msgid "Complete onboarding and start using your account" 2036 2036 msgstr "" 2037 2037 ··· 2173 2173 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 - #: src/screens/Onboarding/StepInterests/index.tsx:253 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:277 2176 + #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:278 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "" ··· 2191 2191 msgid "Continue thread..." 2192 2192 msgstr "" 2193 2193 2194 - #: src/screens/Onboarding/StepInterests/index.tsx:250 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:274 2194 + #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:275 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2212 2212 msgid "Conversation deleted" 2213 2213 msgstr "" 2214 2214 2215 - #: src/screens/Onboarding/index.tsx:55 2215 + #: src/screens/Onboarding/index.tsx:57 2216 2216 msgid "Cooking" 2217 2217 msgstr "" 2218 2218 ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:291 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:293 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2457 2457 msgid "Creator has been blocked" 2458 2458 msgstr "" 2459 2459 2460 - #: src/screens/Onboarding/index.tsx:40 2460 + #: src/screens/Onboarding/index.tsx:42 2461 2461 #: src/screens/Onboarding/state.ts:107 2462 2462 msgid "Culture" 2463 2463 msgstr "" ··· 2734 2734 msgid "Discover new custom feeds" 2735 2735 msgstr "" 2736 2736 2737 - #: src/screens/Search/Explore.tsx:434 2737 + #: src/screens/Search/Explore.tsx:435 2738 2738 #: src/view/screens/Feeds.tsx:730 2739 2739 msgid "Discover New Feeds" 2740 2740 msgstr "" ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:329 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:332 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:334 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3005 3005 msgid "Edit your starter pack" 3006 3006 msgstr "" 3007 3007 3008 - #: src/screens/Onboarding/index.tsx:45 3008 + #: src/screens/Onboarding/index.tsx:47 3009 3009 #: src/screens/Onboarding/state.ts:109 3010 3010 msgid "Education" 3011 3011 msgstr "" ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3434 3434 msgid "Failed to load conversations" 3435 3435 msgstr "" 3436 3436 3437 - #: src/screens/Search/Explore.tsx:470 3438 - #: src/screens/Search/Explore.tsx:522 3439 - #: src/screens/Search/Explore.tsx:560 3440 - #: src/screens/Search/Explore.tsx:599 3437 + #: src/screens/Search/Explore.tsx:471 3438 + #: src/screens/Search/Explore.tsx:523 3439 + #: src/screens/Search/Explore.tsx:561 3440 + #: src/screens/Search/Explore.tsx:600 3441 3441 msgid "Failed to load feeds preferences" 3442 3442 msgstr "" 3443 3443 ··· 3467 3467 msgid "Failed to load preference." 3468 3468 msgstr "" 3469 3469 3470 - #: src/screens/Search/Explore.tsx:463 3471 - #: src/screens/Search/Explore.tsx:515 3472 - #: src/screens/Search/Explore.tsx:553 3473 - #: src/screens/Search/Explore.tsx:592 3470 + #: src/screens/Search/Explore.tsx:464 3471 + #: src/screens/Search/Explore.tsx:516 3472 + #: src/screens/Search/Explore.tsx:554 3473 + #: src/screens/Search/Explore.tsx:593 3474 3474 msgid "Failed to load suggested feeds" 3475 3475 msgstr "" 3476 3476 3477 - #: src/screens/Search/Explore.tsx:373 3477 + #: src/screens/Search/Explore.tsx:374 3478 3478 msgid "Failed to load suggested follows" 3479 3479 msgstr "" 3480 3480 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "" 3519 3519 ··· 3662 3662 msgstr "" 3663 3663 3664 3664 #: src/screens/Onboarding/StepFinished.tsx:479 3665 - #: src/screens/Onboarding/StepFinished.tsx:590 3665 + #: src/screens/Onboarding/StepFinished.tsx:591 3666 3666 msgid "Finalizing" 3667 3667 msgstr "" 3668 3668 ··· 3690 3690 msgid "Finish" 3691 3691 msgstr "" 3692 3692 3693 - #: src/screens/Onboarding/index.tsx:49 3693 + #: src/screens/Onboarding/index.tsx:51 3694 3694 msgid "Fitness" 3695 3695 msgstr "" 3696 3696 ··· 3853 3853 msgid "Font size" 3854 3854 msgstr "" 3855 3855 3856 - #: src/screens/Onboarding/index.tsx:54 3856 + #: src/screens/Onboarding/index.tsx:56 3857 3857 #: src/screens/Onboarding/state.ts:110 3858 3858 msgid "Food" 3859 3859 msgstr "" ··· 4576 4576 msgid "Join the conversation" 4577 4577 msgstr "" 4578 4578 4579 - #: src/screens/Onboarding/index.tsx:35 4579 + #: src/screens/Onboarding/index.tsx:37 4580 4580 #: src/screens/Onboarding/state.ts:112 4581 4581 msgid "Journalism" 4582 4582 msgstr "" ··· 4758 4758 msgstr "" 4759 4759 4760 4760 #: src/screens/Onboarding/StepFinished.tsx:481 4761 - #: src/screens/Onboarding/StepFinished.tsx:590 4761 + #: src/screens/Onboarding/StepFinished.tsx:591 4762 4762 msgid "Let's go!" 4763 4763 msgstr "" 4764 4764 ··· 4943 4943 msgid "Live link" 4944 4944 msgstr "" 4945 4945 4946 - #: src/screens/Search/Explore.tsx:86 4946 + #: src/screens/Search/Explore.tsx:87 4947 4947 msgid "Load more" 4948 4948 msgstr "" 4949 4949 4950 - #: src/screens/Search/Explore.tsx:504 4951 - #: src/screens/Search/Explore.tsx:581 4950 + #: src/screens/Search/Explore.tsx:505 4951 + #: src/screens/Search/Explore.tsx:582 4952 4952 msgid "Load more suggested feeds" 4953 4953 msgstr "" 4954 4954 ··· 5344 5344 msgid "Name or Description Violates Community Standards" 5345 5345 msgstr "" 5346 5346 5347 - #: src/screens/Onboarding/index.tsx:36 5347 + #: src/screens/Onboarding/index.tsx:38 5348 5348 #: src/screens/Onboarding/state.ts:115 5349 5349 msgid "Nature" 5350 5350 msgstr "" ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5498 5498 msgid "Newest replies first" 5499 5499 msgstr "" 5500 5500 5501 - #: src/screens/Onboarding/index.tsx:34 5501 + #: src/screens/Onboarding/index.tsx:36 5502 5502 #: src/screens/Onboarding/state.ts:116 5503 5503 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:238 5504 5504 msgid "News" ··· 5620 5620 msgid "No results" 5621 5621 msgstr "" 5622 5622 5623 - #: src/screens/Search/Explore.tsx:786 5623 + #: src/screens/Search/Explore.tsx:787 5624 5624 msgid "No results for \"{0}\"." 5625 5625 msgstr "" 5626 5626 ··· 5638 5638 msgid "No results found for {query}" 5639 5639 msgstr "" 5640 5640 5641 - #: src/screens/Search/Explore.tsx:790 5641 + #: src/screens/Search/Explore.tsx:791 5642 5642 msgid "No results." 5643 5643 msgstr "" 5644 5644 ··· 5750 5750 msgid "now" 5751 5751 msgstr "" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "" 5756 5756 ··· 5815 5815 msgid "One or more images is missing alt text." 5816 5816 msgstr "" 5817 5817 5818 - #: src/view/com/composer/SelectMediaButton.tsx:390 5818 + #: src/view/com/composer/SelectMediaButton.tsx:387 5819 5819 msgid "One or more of your selected files are not supported." 5820 5820 msgstr "" 5821 5821 5822 - #: src/view/com/composer/SelectMediaButton.tsx:413 5822 + #: src/view/com/composer/SelectMediaButton.tsx:410 5823 5823 msgid "One or more of your selected files are too large. Maximum size is 100 MB." 5824 5824 msgstr "" 5825 5825 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:28 5844 + #: src/lib/media/picker.shared.ts:31 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:285 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:287 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "" 5872 5872 ··· 5976 5976 msgstr "" 5977 5977 5978 5978 #. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. 5979 - #: src/view/com/composer/SelectMediaButton.tsx:488 5979 + #: src/view/com/composer/SelectMediaButton.tsx:474 5980 5980 msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." 5981 5981 msgstr "" 5982 5982 ··· 6157 6157 msgid "Person toggle" 6158 6158 msgstr "" 6159 6159 6160 - #: src/screens/Onboarding/index.tsx:42 6160 + #: src/screens/Onboarding/index.tsx:44 6161 6161 #: src/screens/Onboarding/state.ts:117 6162 6162 msgid "Pets" 6163 6163 msgstr "" ··· 6384 6384 msgid "Please write your message below:" 6385 6385 msgstr "" 6386 6386 6387 - #: src/screens/Onboarding/index.tsx:48 6387 + #: src/screens/Onboarding/index.tsx:50 6388 6388 #: src/screens/Onboarding/state.ts:119 6389 6389 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:232 6390 6390 msgid "Politics" ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 7377 7377 msgid "Say hello!" 7378 7378 msgstr "" 7379 7379 7380 - #: src/screens/Onboarding/index.tsx:47 7380 + #: src/screens/Onboarding/index.tsx:49 7381 7381 #: src/screens/Onboarding/state.ts:120 7382 7382 msgid "Science" 7383 7383 msgstr "" ··· 7438 7438 msgid "Search for feeds that you want to suggest to others." 7439 7439 msgstr "" 7440 7440 7441 - #: src/screens/Search/Explore.tsx:360 7441 + #: src/screens/Search/Explore.tsx:361 7442 7442 msgid "Search for more accounts" 7443 7443 msgstr "" 7444 7444 7445 - #: src/screens/Search/Explore.tsx:437 7445 + #: src/screens/Search/Explore.tsx:438 7446 7446 msgid "Search for more feeds" 7447 7447 msgstr "" 7448 7448 ··· 7665 7665 msgid "Select your preferred notification channels" 7666 7666 msgstr "" 7667 7667 7668 - #: src/view/com/composer/SelectMediaButton.tsx:393 7668 + #: src/view/com/composer/SelectMediaButton.tsx:390 7669 7669 msgid "Selecting multiple media types is not supported." 7670 7670 msgstr "" 7671 7671 ··· 8123 8123 msgid "Snoozes the reminder" 8124 8124 msgstr "" 8125 8125 8126 - #: src/screens/Onboarding/index.tsx:51 8126 + #: src/screens/Onboarding/index.tsx:53 8127 8127 #: src/screens/Onboarding/state.ts:108 8128 8128 msgid "Software Dev" 8129 8129 msgstr "" ··· 8219 8219 msgid "Spam; excessive mentions or replies" 8220 8220 msgstr "" 8221 8221 8222 - #: src/screens/Onboarding/index.tsx:41 8222 + #: src/screens/Onboarding/index.tsx:43 8223 8223 #: src/screens/Onboarding/state.ts:121 8224 8224 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:230 8225 8225 msgid "Sports" ··· 8270 8270 msgid "Starter pack is invalid" 8271 8271 msgstr "" 8272 8272 8273 - #: src/screens/Search/Explore.tsx:628 8273 + #: src/screens/Search/Explore.tsx:629 8274 8274 #: src/view/screens/Profile.tsx:231 8275 8275 msgid "Starter Packs" 8276 8276 msgstr "" ··· 8357 8357 msgid "Successfully verified" 8358 8358 msgstr "" 8359 8359 8360 - #: src/screens/Search/Explore.tsx:357 8360 + #: src/screens/Search/Explore.tsx:358 8361 8361 msgid "Suggested Accounts" 8362 8362 msgstr "" 8363 8363 ··· 8460 8460 msgid "Teach our algorithm what you like" 8461 8461 msgstr "" 8462 8462 8463 - #: src/screens/Onboarding/index.tsx:50 8463 + #: src/screens/Onboarding/index.tsx:52 8464 8464 #: src/screens/Onboarding/state.ts:122 8465 8465 msgid "Tech" 8466 8466 msgstr "" ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:289 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:291 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "" 9395 9395 ··· 9516 9516 msgid "User list updated" 9517 9517 msgstr "" 9518 9518 9519 - #: src/screens/Signup/StepHandle/index.tsx:231 9519 + #: src/screens/Signup/StepHandle/index.tsx:234 9520 9520 msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" 9521 9521 msgstr "" 9522 9522 9523 - #: src/screens/Signup/StepHandle/index.tsx:215 9523 + #: src/screens/Signup/StepHandle/index.tsx:218 9524 9524 msgid "Username cannot begin or end with a hyphen" 9525 9525 msgstr "" 9526 9526 9527 - #: src/screens/Signup/StepHandle/index.tsx:219 9527 + #: src/screens/Signup/StepHandle/index.tsx:222 9528 9528 msgid "Username must only contain letters (a-z), numbers, and hyphens" 9529 9529 msgstr "" 9530 9530 ··· 9665 9665 msgid "Video from {0}: {text}" 9666 9666 msgstr "" 9667 9667 9668 - #: src/screens/Onboarding/index.tsx:53 9668 + #: src/screens/Onboarding/index.tsx:55 9669 9669 #: src/screens/Onboarding/state.ts:111 9670 9670 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:234 9671 9671 msgid "Video Games" ··· 9699 9699 msgid "Videos" 9700 9700 msgstr "" 9701 9701 9702 - #: src/view/com/composer/SelectMediaButton.tsx:407 9702 + #: src/view/com/composer/SelectMediaButton.tsx:404 9703 9703 msgid "Videos must be less than 3 minutes long." 9704 9704 msgstr "" 9705 9705 ··· 10123 10123 msgid "Write your reply" 10124 10124 msgstr "" 10125 10125 10126 - #: src/screens/Onboarding/index.tsx:39 10126 + #: src/screens/Onboarding/index.tsx:41 10127 10127 #: src/screens/Onboarding/state.ts:124 10128 10128 msgid "Writers" 10129 10129 msgstr "" ··· 10257 10257 msgid "You can now sign in with your new password." 10258 10258 msgstr "" 10259 10259 10260 - #: src/view/com/composer/SelectMediaButton.tsx:410 10260 + #: src/view/com/composer/SelectMediaButton.tsx:407 10261 10261 msgid "You can only select one GIF at a time." 10262 10262 msgstr "" 10263 10263 10264 - #: src/view/com/composer/SelectMediaButton.tsx:404 10264 + #: src/view/com/composer/SelectMediaButton.tsx:401 10265 10265 msgid "You can only select one video at a time." 10266 10266 msgstr "" 10267 10267 ··· 10270 10270 msgstr "" 10271 10271 10272 10272 #. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. 10273 - #: src/view/com/composer/SelectMediaButton.tsx:396 10273 + #: src/view/com/composer/SelectMediaButton.tsx:393 10274 10274 msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." 10275 10275 msgstr "" 10276 10276 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "" 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364 ··· 10448 10448 msgid "You must sign in to view this post." 10449 10449 msgstr "" 10450 10450 10451 - #: src/view/com/composer/SelectMediaButton.tsx:439 10451 + #: src/view/com/composer/SelectMediaButton.tsx:436 10452 10452 msgid "You need to allow access to your media library." 10453 10453 msgstr "" 10454 10454
+33 -33
src/locale/locales/ne/messages.po
··· 8 8 "Language: ne\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Nepali\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "थप्नुहोस्" ··· 782 782 msgid "Add to lists" 783 783 msgstr "सूचीहरूमा थप्नुहोस्" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "सूचीमा थपियो" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "असफल सन्देश पुन: प्रयास गर्न क्लिक गर्नुहोस्" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "जारी राख्नुहोस्" ··· 2192 2192 msgstr "थ्रेड जारी राख्नुहोस्..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "सिर्जना गर्नुहोस्" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "यसको सट्टा एउटा अवतार बनाउनुहोस्" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "{0} का लागि रिपोर्ट सिर्जना गर्नुहोस्" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "पठाउन असफल" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "आफ्नो प्रोफाइललाई अनुहार दिनुहोस्" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "सहयोग" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "फोटो अपलोड गरेर वा अवतार सिर्जना गरेर आफू बोट होइन भनेर देखाउन सहयोग गर्नुहोस्।" 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "अहिले" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "अहिले" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "एक वा बढी भिडियोहरूमा वैकल्पिक पाठ छैन।" 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "केवल .jpg र .png फाइलहरू समर्थित छन्" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "केवल चित्र फाइलहरू समर्थित छन्" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "खोल्नुहोस्" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "अवतार सिर्जनाकर्ता खोल्नुहोस्" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "सुरक्षित फिडहरूबाट हटाइयो" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "अन्तिम कार्य पुन: प्रयास गर्नुहोस्, जसमा त्रुटि भएको थियो" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "अपडेट गर्दै..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "फोटो अपलोड गर्नुहोस्" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "तपाईंको कुनै सूची छैन।" 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/nl/messages.po
··· 8 8 "Language: nl\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Dutch\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# personen hebben}} dit startpakket gebruikt!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Toevoegen" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Toevoegen aan lijsten" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Toegevoegd aan lijst" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Klik om het labelmenu voor {tag} te openen" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Klik om mislukt privébericht opnieuw te proberen" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Doorgaan" ··· 2192 2192 msgstr "Verder lezen..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Aanmaken" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "In plaats daarvan een avatar maken" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Melding maken voor {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Toevoegen van emoji-reactie mislukt" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Verzenden mislukt" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Geef je profiel een gezicht" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Hulp" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Laat mensen weten dat je geen bot bent door een foto te uploaden of een avatar te maken." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "nu" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Nu" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Alt-tekst ontbreekt bij een of meer video's." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Alleen .jpg- en .png-bestanden worden ondersteund" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Alleen afbeeldingsbestanden worden ondersteund" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Openen" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Avatar-maker openen" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Verwijderd uit opgeslagen feeds" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Probeert de laatste mislukte actie opnieuw" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Bijwerken..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "In plaats daarvan een foto uploaden" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Je hebt geen lijsten." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/pl/messages.po
··· 8 8 "Language: pl\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Polish\n" 14 14 "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Dodaj" ··· 782 782 msgid "Add to lists" 783 783 msgstr "" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Dodano do listy" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Kliknij, aby otworzyć menu tagów dla {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Kliknij, aby spróbować wysłać wiadomość ponownie" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Kontynuuj" ··· 2192 2192 msgstr "Kontynuuj wątek..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Utwórz" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Zamiast tego utwórz zdjęcie profilowe" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Zgłoś {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Nie udało się wysłać" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Zmień wygląd swojego profilu" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Pomoc" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Daj znać innym, że nie jesteś botem, ustawiając zdjęcie profilowe." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "teraz" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Teraz" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "W co najmniej jednym wideo brakuje tekstu alternatywnego." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Obsługiwane są tylko pliki .jpg i .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Obsługiwane są tylko pliki obrazów" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Otwórz" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Otwórz kreator zdjęcia profilowego" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Usunięto z zapisanych kanałów" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Ponawia ostatnią akcję, która zakończyła się błędem" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Aktualizowanie..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Zamiast tego prześlij zdjęcie" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Nie masz żadnych list." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/pt-BR/messages.po
··· 8 8 "Language: pt\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Portuguese, Brazilian\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# pessoas usaram}} este pacote inicial!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Adicionar" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Adicionar às listas" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Adicionado à lista" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Clique para abrir o menu de tags para {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Clique para tentar enviar novamente a mensagem" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Continuar" ··· 2192 2192 msgstr "Continuar tópico..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Criar" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Criar uma conta sem usar este pacote inicial" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Adicionar uma foto de perfil" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Criar denúncia para {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Falha ao adicionar reação de emoji" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Falha ao remover reação de emoji" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Falha ao salvar seus interesses." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Falha ao enviar" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Dê uma cara nova pro seu perfil" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Ajuda" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "As pessoas não vão achar que você é um bot se você criar um avatar ou fazer upload de uma imagem." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Novas postagens de {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "agora" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Agora" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Um ou mais vídeos estão sem texto alternativo." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Apenas imagens .jpg ou .png são permitidas" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Apenas seguidores que eu sigo" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Apenas arquivos de imagem são suportados" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Aberto" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Abrir criador de avatar" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Removido dos feeds salvos" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Tenta a última ação, que deu erro" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Atualizando..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Enviar uma foto" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Você não tem listas." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/pt-PT/messages.po
··· 8 8 "Language: pt\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Portuguese\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# pessoas usaram}} este pacote de iniciante!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, one {+# outro}other {+# outros}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Adicionar" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Adicionar a Listas" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Adicionado à lista" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "Adicionado ao pacote de iniciante" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Clique para abrir o ecrã de etiquetas para {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Clique para reenviar a mensagem falha" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Continuar" ··· 2192 2192 msgstr "Continuar fio..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Criar" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Criar uma conta sem usar este pacote de iniciante" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Criar uma foto de perfil" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Criar um relatório para {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "Criar pacote de iniciante" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Falhou ao adicionar reação emoji" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "Falha ao adicionar ao pacote de iniciante" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Falhou ao remover reação emoji" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "Falha ao remover do pacote de iniciante" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Falhou ao guardar os seus interesses." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Falhou ao enviar" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Dê um rosto ao seu perfil" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Ajuda" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Carregue uma foto de perfil para ajudar as pessoas a saber que não é um bot." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Novas publicações de {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "Novo pacote de iniciante" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "agora" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Agora" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Um ou mais vídeos sem texto alternativo." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Apenas ficheiros .jpg e .png são suportados" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Apenas seguidores que eu sigo" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Apenas ficheiros de imagem são suportados" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Abrir" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Abrir criador de foto de perfil" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Removido dos feeds guardados" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "Removido do pacote de iniciante" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Repete a última ação, que resultou em erro" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "A atualizar..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Carregar uma foto em vez disso" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Não tem listas." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "Não tem pacotes de iniciante." 10364 10364
+33 -33
src/locale/locales/ro/messages.po
··· 8 8 "Language: ro\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Romanian\n" 14 14 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, one {O persoană a} few {# persoane au}other {# de persoane au}} folosit acest pachet de pornire!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, one {} few {+încă #}other {+încă #}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Adăugare" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Adăugare la liste" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Adăugat la listă" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "Adăugat la pachetul de pornire" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Faceți clic pentru a deschide meniul de etichete pentru {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Faceți clic pentru a reîncerca mesajul eșuat" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Continuare" ··· 2192 2192 msgstr "Continuați firul..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Creare" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Creați un cont fără a utiliza acest pachet de pornire" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Creați un avatar în schimb" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Creați un raport pentru {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "Creare pachet de pornire" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Adăugarea reacției emoji a eșuat" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "Adăugarea la pachetul de pornire a eșuat" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Ștergerea reacției emoji a eșuat" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "Nu s-a putut elimina din pachetul de pornire" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Salvarea intereselor a eșuat." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Nu s-a putut trimite" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Oferiți profilului dvs. o față" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Ajutor" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Ajutați oamenii să știe că nu sunteți un robot încărcând o imagine sau creând un avatar." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Postare nouă de la {firstAuthorName} și {additionalAuthorsCount, plural, one {{formattedAuthorsCount} un alt utilizator} few {{formattedAuthorsCount} alți utilizatori} other {{formattedAuthorsCount} alți utilizatori}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "Pachet de pornire nou" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "acum" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Acum" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Unei sau mai multor videoclipuri le lipsește textul alternativ." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Doar fișierele .jpg și .png sunt acceptate" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Doar urmăritorii pe care îi urmăresc" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Doar fișierele imagine sunt acceptate" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Deschidere" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Deschideți creatorul de avatar" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Eliminat din fluxurile salvate" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "Eliminat din pachetul de pornire" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Reîncearcă ultima acțiune, care a eșuat" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Se actualizează..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Încărcați o fotografie în schimb" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Nu aveți liste." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "Nu aveți pachete de pornire." 10364 10364
+117 -117
src/locale/locales/ru/messages.po
··· 8 8 "Language: ru\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Russian\n" 14 14 "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" ··· 21 21 #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. 22 22 #: src/components/InterestTabs.tsx:325 23 23 msgid "\"{interestsDisplayName}\" category (active)" 24 - msgstr "" 24 + msgstr "Категория \"{interestsDisplayName}\" (активна)" 25 25 26 26 #: src/screens/Messages/components/ChatListItem.tsx:160 27 27 msgid "(contains embedded content)" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, few {# человека воспользовались} other {# человек воспользовался}} этим стартовым набором!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 141 141 142 142 #: src/screens/Profile/Header/Metrics.tsx:49 143 143 msgid "{0} following" 144 - msgstr "" 144 + msgstr "{0} подписок" 145 145 146 146 #: src/components/live/LiveStatusDialog.tsx:68 147 147 msgid "{0} is live" ··· 153 153 154 154 #: src/screens/Signup/StepHandle/index.tsx:189 155 155 msgid "{0} is not available" 156 - msgstr "" 156 + msgstr "{0} недоступен" 157 157 158 158 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 159 159 msgid "{0} joined this week" ··· 178 178 179 179 #: src/view/com/feeds/FeedSourceCard.tsx:187 180 180 msgid "{0}, a feed by {1}, liked by {2}" 181 - msgstr "" 181 + msgstr "{0}, лента от {1}, которая нравится {2}" 182 182 183 183 #: src/view/com/feeds/FeedSourceCard.tsx:188 184 184 msgid "{0}, a list by {1}" 185 - msgstr "" 185 + msgstr "{0}, список от {1}" 186 186 187 187 #: src/view/com/util/UserAvatar.tsx:572 188 188 #: src/view/com/util/UserAvatar.tsx:590 ··· 372 372 373 373 #: src/view/com/notifications/NotificationFeedItem.tsx:482 374 374 msgid "{firstAuthorName} liked your repost" 375 - msgstr "" 375 + msgstr "Пользователю {firstAuthorName} понравился ваш репост" 376 376 377 377 #: src/view/com/notifications/NotificationFeedItem.tsx:455 378 378 msgid "{firstAuthorName} removed their verification from your account" ··· 384 384 385 385 #: src/view/com/notifications/NotificationFeedItem.tsx:506 386 386 msgid "{firstAuthorName} reposted your repost" 387 - msgstr "" 387 + msgstr "Пользователь {firstAuthorName} сделал репост вашего репоста" 388 388 389 389 #: src/view/com/notifications/NotificationFeedItem.tsx:401 390 390 msgid "{firstAuthorName} signed up with your starter pack" ··· 496 496 497 497 #: src/screens/Search/SearchResults.tsx:255 498 498 msgid "<0>Sign in</0><1> or </1><2>create an account</2><3> </3><4>to search for news, sports, politics, and everything else happening on Bluesky.</4>" 499 - msgstr "" 499 + msgstr "<0>Войдите в свой аккаунт</0><1> или </1><2>создайте аккаунт</2><3>, </3><4> чтобы искать новости, спорт, политику и всё остальное, что происходит на Bluesky.</4>" 500 500 501 501 #: src/screens/StarterPack/Wizard/index.tsx:502 502 502 msgid "<0>You</0> and<1> </1><2>{0} </2>are included in your starter pack" ··· 524 524 525 525 #: src/screens/Onboarding/StepFinished.tsx:341 526 526 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" 527 - msgstr "" 527 + msgstr "Подборка популярных лент, которые вы можете найти на Bluesky, включая News, Booksky, Game Dev, Blacksky и Foundation Pens" 528 528 529 529 #. If last message does not contain text, fall back to "{user} reacted to {a message}" 530 530 #: src/screens/Messages/components/ChatListItem.tsx:210 ··· 642 642 #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:102 643 643 #: src/screens/Settings/NotificationSettings/index.tsx:192 644 644 msgid "Activity from others" 645 - msgstr "" 645 + msgstr "Активность от других" 646 646 647 647 #: src/Navigation.tsx:491 648 648 msgid "Activity notifications" 649 - msgstr "" 649 + msgstr "Уведомления от активностей" 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Добавить" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Добавить в списки" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Добавлено в список" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 804 804 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:112 805 805 msgid "Additional details (limit 1000 characters)" 806 - msgstr "" 806 + msgstr "Дополнительные сведения (не больше 1000 символов)" 807 807 808 808 #: src/components/moderation/ReportDialog/index.tsx:421 809 809 msgid "Additional details (limit 300 characters)" ··· 839 839 840 840 #: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 841 841 msgid "Age Assurance" 842 - msgstr "" 842 + msgstr "Проверка возраста" 843 843 844 844 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:70 845 845 msgid "Age assurance inquiry failed to send, please try again." ··· 852 852 853 853 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:145 854 854 msgid "Age assurance only takes a few minutes" 855 - msgstr "" 855 + msgstr "Проверка возраста занимает всего лишь несколько минут" 856 856 857 857 #: src/components/dialogs/EmailDialog/screens/Update.tsx:223 858 858 msgid "alice@example.com" ··· 892 892 #: src/screens/Settings/ActivityPrivacySettings.tsx:52 893 893 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 894 894 msgid "Allow others to be notified of your posts" 895 - msgstr "" 895 + msgstr "Разрешить уведомлять других пользователей о ваших постах" 896 896 897 897 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:348 898 898 msgid "Allow quote posts" ··· 1074 1074 #: src/screens/Settings/ActivityPrivacySettings.tsx:116 1075 1075 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 1076 1076 msgid "Anyone who follows me" 1077 - msgstr "" 1077 + msgstr "Любой, кто подписан на меня" 1078 1078 1079 1079 #: src/Navigation.tsx:531 1080 1080 #: src/screens/Settings/AppIconSettings/index.tsx:67 ··· 1239 1239 1240 1240 #: src/screens/Settings/components/ChangePasswordDialog.tsx:208 1241 1241 msgid "At least 8 characters" 1242 - msgstr "" 1242 + msgstr "Как минимум 8 символов" 1243 1243 1244 1244 #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 1245 1245 msgctxt "Name of app icon variant" ··· 1254 1254 #. Shown next to an available username suggestion in the account creation flow 1255 1255 #: src/screens/Signup/StepHandle/HandleSuggestions.tsx:72 1256 1256 msgid "Available" 1257 - msgstr "" 1257 + msgstr "Доступен" 1258 1258 1259 1259 #: src/components/moderation/LabelsOnMeDialog.tsx:315 1260 1260 #: src/components/moderation/LabelsOnMeDialog.tsx:316 ··· 1301 1301 1302 1302 #: src/components/activity-notifications/SubscribeProfileButton.tsx:43 1303 1303 msgid "Before you can get notifications for {name}'s posts, you must first verify your email." 1304 - msgstr "" 1304 + msgstr "Перед тем, как вы будете получать уведомления о постах пользователя {name}, вы должны подтвердить свой адрес электронной почты." 1305 1305 1306 1306 #: src/components/dms/dialogs/NewChatDialog.tsx:54 1307 1307 #: src/components/dms/MessageProfileButton.tsx:58 ··· 1312 1312 1313 1313 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 1314 1314 msgid "Begin" 1315 - msgstr "" 1315 + msgstr "Начать" 1316 1316 1317 1317 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 1318 1318 msgid "Begin age assurance process" 1319 - msgstr "" 1319 + msgstr "Начать процесс проверки возраста" 1320 1320 1321 1321 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 1322 1322 msgid "Begin the age assurance process by completing the fields below." 1323 - msgstr "" 1323 + msgstr "Начните процесс проверки возраста, заполнив поля ниже." 1324 1324 1325 1325 #: src/components/dialogs/BirthDateSettings.tsx:115 1326 1326 #: src/screens/Settings/AccountSettings.tsx:142 ··· 1686 1686 #: src/screens/Settings/components/ChangePasswordDialog.tsx:260 1687 1687 #: src/screens/Settings/components/ChangePasswordDialog.tsx:266 1688 1688 msgid "Change password" 1689 - msgstr "" 1689 + msgstr "Изменить пароль" 1690 1690 1691 1691 #: src/screens/Settings/components/ChangePasswordDialog.tsx:164 1692 1692 msgid "Change password dialog" 1693 - msgstr "" 1693 + msgstr "Окно изменения пароля" 1694 1694 1695 1695 #: src/view/com/composer/select-language/SuggestedLanguage.tsx:98 1696 1696 msgid "Change post language to {suggestedLanguageName}" ··· 1702 1702 1703 1703 #: src/screens/Settings/components/ChangePasswordDialog.tsx:57 1704 1704 msgid "Change your password" 1705 - msgstr "" 1705 + msgstr "Измените свой пароль" 1706 1706 1707 1707 #: src/screens/Settings/AppIconSettings/index.tsx:216 1708 1708 msgid "Changes app icon" ··· 1853 1853 1854 1854 #: src/view/com/feeds/MissingFeed.tsx:87 1855 1855 msgid "Click for information" 1856 - msgstr "" 1856 + msgstr "Нажмите для информации" 1857 1857 1858 1858 #: src/view/screens/Support.tsx:41 1859 1859 msgid "click here" ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Нажмите, чтобы открыть меню тегов для {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Нажмите, чтобы повторить неудачное сообщение" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2103 2103 2104 2104 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:213 2105 2105 msgid "Connection issue" 2106 - msgstr "" 2106 + msgstr "Проблема с подключением" 2107 2107 2108 2108 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:84 2109 2109 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:28 2110 2110 msgid "Contact our moderation team" 2111 - msgstr "" 2111 + msgstr "Обратитесь к нашей команде модерации" 2112 2112 2113 2113 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:155 2114 2114 #: src/screens/Signup/index.tsx:212 ··· 2118 2118 2119 2119 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:94 2120 2120 msgid "Contact us" 2121 - msgstr "" 2121 + msgstr "Обратитесь к нам" 2122 2122 2123 2123 #: src/screens/Settings/ContentAndMediaSettings.tsx:51 2124 2124 msgid "Content & Media" ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Далее" ··· 2192 2192 msgstr "Продолжить ветку..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2341 2341 2342 2342 #: src/view/com/feeds/MissingFeed.tsx:133 2343 2343 msgid "Could not connect to feed service" 2344 - msgstr "" 2344 + msgstr "Не удалось подключиться к сервису лент" 2345 2345 2346 2346 #: src/view/com/feeds/MissingFeed.tsx:182 2347 2347 msgid "Could not find profile" 2348 - msgstr "" 2348 + msgstr "Не удалось найти профиль" 2349 2349 2350 2350 #: src/components/dms/LeaveConvoPrompt.tsx:35 2351 2351 #: src/components/dms/ReportDialog.tsx:310 ··· 2370 2370 2371 2371 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:288 2372 2372 msgid "Could not save changes: {0}" 2373 - msgstr "" 2373 + msgstr "Не удалось сохранить изменения: {0}" 2374 2374 2375 2375 #: src/state/queries/notifications/settings.ts:49 2376 2376 msgid "Could not update notification settings" 2377 - msgstr "" 2377 + msgstr "Не удалось обновить настройки уведомлений" 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Создать" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Создать учётную запись без этого стартового набора" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Создать аватар вместо этого" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Создать отчёт для {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 - msgstr "" 2450 + msgstr "Создать стартовый набор" 2451 2451 2452 2452 #: src/screens/Settings/AppPasswords.tsx:174 2453 2453 msgid "Created {0}" ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Не удалось добавить эмодзи-реакцию" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Не удалось удалить эмодзи-реакцию" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Не удалось сохранить ваши интересы." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Не удалось отправить" 3519 3519 ··· 3759 3759 3760 3760 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:232 3761 3761 msgid "Follow all accounts" 3762 - msgstr "" 3762 + msgstr "Подписаться на все аккаунты" 3763 3763 3764 3764 #. User is not following this account, click to follow back 3765 3765 #: src/components/ProfileCard.tsx:518 ··· 3775 3775 3776 3776 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:121 3777 3777 msgid "Followed all accounts!" 3778 - msgstr "" 3778 + msgstr "Вы подписаны на всё аккаунты!" 3779 3779 3780 3780 #: src/components/KnownFollowers.tsx:238 3781 3781 msgid "Followed by <0>{0}</0>" ··· 3885 3885 3886 3886 #: src/screens/Onboarding/StepFinished.tsx:354 3887 3887 msgid "Forget the noise" 3888 - msgstr "" 3888 + msgstr "Забудьте о шуме" 3889 3889 3890 3890 #: src/screens/Login/index.tsx:153 3891 3891 #: src/screens/Login/index.tsx:168 ··· 3902 3902 3903 3903 #: src/screens/Onboarding/StepFinished.tsx:336 3904 3904 msgid "Free your feed" 3905 - msgstr "" 3905 + msgstr "Освободите свою ленту" 3906 3906 3907 3907 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54 3908 3908 #: src/lib/moderation/useReportOptions.ts:54 ··· 3932 3932 3933 3933 #: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 3934 3934 msgid "Get notifications when people follow you." 3935 - msgstr "" 3935 + msgstr "Получайте уведомления, когда на вас подписываются люди." 3936 3936 3937 3937 #: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 3938 3938 msgid "Get notifications when people like posts that you've reposted." 3939 - msgstr "" 3939 + msgstr "Получайте уведомления, когда люди ставят лайки на ваши репосты." 3940 3940 3941 3941 #: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 3942 3942 msgid "Get notifications when people like your posts." 3943 - msgstr "" 3943 + msgstr "Получайте уведомления, когда люди ставят лайки на ваши посты." 3944 3944 3945 3945 #: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 3946 3946 msgid "Get notifications when people mention you." 3947 - msgstr "" 3947 + msgstr "Получайте уведомления, когда люди упоминают вас." 3948 3948 3949 3949 #: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 3950 3950 msgid "Get notifications when people quote your posts." 3951 - msgstr "" 3951 + msgstr "Получайте уведомления, когда люди цитируют ваши посты." 3952 3952 3953 3953 #: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 3954 3954 msgid "Get notifications when people reply to your posts." 3955 - msgstr "" 3955 + msgstr "Получайте уведомления, когда люди отвечают на ваши посты." 3956 3956 3957 3957 #: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 3958 3958 msgid "Get notifications when people repost posts that you've reposted." 3959 - msgstr "" 3959 + msgstr "Получайте уведомления, когда люди репостят ваши репосты." 3960 3960 3961 3961 #: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 3962 3962 msgid "Get notifications when people repost your posts." 3963 - msgstr "" 3963 + msgstr "Получайте уведомления, когда люди репостят ваши посты." 3964 3964 3965 3965 #: src/components/activity-notifications/SubscribeProfileButton.tsx:77 3966 3966 msgid "Get notified about new posts" 3967 - msgstr "" 3967 + msgstr "Получайте уведомления о новых постах" 3968 3968 3969 3969 #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:104 3970 3970 msgid "Get notified about posts and replies from accounts you choose." ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Придайте своему профилю лицо" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Справка" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Чтобы люди знали, что вы не бот, загрузите фотографию или создайте аватар." 4167 4167 ··· 4421 4421 4422 4422 #: src/screens/Settings/NotificationSettings/index.tsx:284 4423 4423 msgid "In-app" 4424 - msgstr "" 4424 + msgstr "В приложении" 4425 4425 4426 4426 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:143 4427 4427 msgid "In-app notifications" 4428 - msgstr "" 4428 + msgstr "Уведомления в приложении" 4429 4429 4430 4430 #: src/screens/Settings/NotificationSettings/index.tsx:267 4431 4431 msgid "In-app, Everyone" 4432 - msgstr "" 4432 + msgstr "В приложении, Все" 4433 4433 4434 4434 #: src/screens/Settings/NotificationSettings/index.tsx:275 4435 4435 msgid "In-app, People you follow" 4436 - msgstr "" 4436 + msgstr "В приложении, Люди, на которых вы подписаны" 4437 4437 4438 4438 #: src/screens/Settings/NotificationSettings/index.tsx:282 4439 4439 msgid "In-app, Push" 4440 - msgstr "" 4440 + msgstr "В приложении, Push" 4441 4441 4442 4442 #: src/screens/Settings/NotificationSettings/index.tsx:265 4443 4443 msgid "In-app, Push, Everyone" 4444 - msgstr "" 4444 + msgstr "В приложении, Push, Все" 4445 4445 4446 4446 #: src/screens/Settings/NotificationSettings/index.tsx:273 4447 4447 msgid "In-app, Push, People you follow" 4448 - msgstr "" 4448 + msgstr "В приложении, Push, Люди, на которых вы подписаны" 4449 4449 4450 4450 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:91 4451 4451 #: src/lib/moderation/useReportOptions.ts:91 ··· 4491 4491 4492 4492 #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:32 4493 4493 msgid "Introducing activity notifications" 4494 - msgstr "" 4494 + msgstr "Представляем уведомления об активности" 4495 4495 4496 4496 #: src/screens/Login/LoginForm.tsx:156 4497 4497 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:70 ··· 4504 4504 4505 4505 #: src/components/moderation/ReportDialog/index.tsx:73 4506 4506 msgid "Invalid report subject" 4507 - msgstr "" 4507 + msgstr "Недопустимая тема отчета" 4508 4508 4509 4509 #: src/components/intents/VerifyEmailIntentDialog.tsx:91 4510 4510 msgid "Invalid Verification Code" ··· 4548 4548 4549 4549 #: src/screens/StarterPack/Wizard/index.tsx:491 4550 4550 msgid "It's just <0>{0} </0>right now! Add more people to your starter pack by searching above." 4551 - msgstr "" 4551 + msgstr "Сейчас это просто <0>{0} </0>! Добавьте больше людей в свой стартовый набор, воспользовавшись поиском выше." 4552 4552 4553 4553 #: src/screens/StarterPack/Wizard/index.tsx:486 4554 4554 msgid "It's just you right now! Add more people to your starter pack by searching above." ··· 4583 4583 4584 4584 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:223 4585 4585 msgid "Keep me posted" 4586 - msgstr "" 4586 + msgstr "Держите меня в курсе" 4587 4587 4588 4588 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:344 4589 4589 msgid "KWS Privacy Policy" 4590 - msgstr "" 4590 + msgstr "Политика конфиденциальности KWS" 4591 4591 4592 4592 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:334 4593 4593 msgid "KWS Terms of Use" 4594 - msgstr "" 4594 + msgstr "Условия использования KWS" 4595 4595 4596 4596 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:201 4597 4597 msgid "KWS website" 4598 - msgstr "" 4598 + msgstr "Веб-сайт KWS" 4599 4599 4600 4600 #: src/components/moderation/ContentHider.tsx:234 4601 4601 msgid "Labeled by {0}." ··· 4642 4642 4643 4643 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:139 4644 4644 msgid "Last initiated {timeAgo} ago" 4645 - msgstr "" 4645 + msgstr "Последнее инициирование {timeAgo} назад" 4646 4646 4647 4647 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:137 4648 4648 msgid "Last initiated just now" 4649 - msgstr "" 4649 + msgstr "Последнее инициирование только что" 4650 4650 4651 4651 #: src/screens/Hashtag.tsx:95 4652 4652 #: src/screens/Search/SearchResults.tsx:57 ··· 4662 4662 #: src/screens/Settings/components/ChangeHandleDialog.tsx:277 4663 4663 msgctxt "english-only-resource" 4664 4664 msgid "Learn more" 4665 - msgstr "" 4665 + msgstr "Узнать больше" 4666 4666 4667 4667 #: src/components/moderation/ScreenHider.tsx:140 4668 4668 msgid "Learn More" ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5533 5533 5534 5534 #: src/screens/Onboarding/StepFinished.tsx:356 5535 5535 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." 5536 - msgstr "" 5536 + msgstr "Без рекламы, без инвазивного отслеживания, без вовлекающих ловушек. Bluesky уважает ваше время и внимание." 5537 5537 5538 5538 #: src/screens/Settings/AppPasswords.tsx:108 5539 5539 msgid "No app passwords yet" ··· 5576 5576 5577 5577 #: src/screens/Onboarding/StepFinished.tsx:338 5578 5578 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." 5579 - msgstr "" 5579 + msgstr "Больше никаких алгоритмов, наполненных бесполезной информацией. Найдите каналы, которые работают на вас, а не против вас." 5580 5580 5581 5581 #: src/view/com/notifications/NotificationFeed.tsx:122 5582 5582 msgid "No notifications yet!" ··· 5750 5750 msgid "now" 5751 5751 msgstr "сейчас" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Сейчас" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "В одном или нескольких видео отсутствует альтернативный текст." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Поддерживаются только файлы .jpg и .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Поддерживаются только файлы изображений" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Открыть" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Открыть создатель аватара" 5872 5872 ··· 6307 6307 6308 6308 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 6309 6309 msgid "Please enter the code we sent to <0>{0}</0> below." 6310 - msgstr "" 6310 + msgstr "Пожалуйста, введите код, который мы отправили <0>{0}</0> ниже." 6311 6311 6312 6312 #: src/screens/Settings/components/ChangePasswordDialog.tsx:65 6313 6313 msgid "Please enter the code you received and the new password you would like to use." ··· 6328 6328 6329 6329 #: src/components/dialogs/EmailDialog/screens/Update.tsx:217 6330 6330 msgid "Please enter your new email address." 6331 - msgstr "" 6331 + msgstr "Пожалуйста, введите новый адрес электронной почты." 6332 6332 6333 6333 #: src/screens/Login/LoginForm.tsx:99 6334 6334 msgid "Please enter your password" ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Удалено из сохранённых лент" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Повторяет последнее действие, которое вызвало ошибку" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 7517 7517 #: src/components/FeedInterstitials.tsx:394 7518 7518 #: src/components/FeedInterstitials.tsx:445 7519 7519 msgid "See more" 7520 - msgstr "" 7520 + msgstr "Подробнее" 7521 7521 7522 7522 #: src/components/FeedInterstitials.tsx:392 7523 7523 msgid "See more suggested profiles on the Explore page" 7524 - msgstr "" 7524 + msgstr "Подробнее о предлагаемых профилях на странице Explore" 7525 7525 7526 7526 #: src/view/screens/SavedFeeds.tsx:213 7527 7527 msgid "See this guide" ··· 7596 7596 #: src/components/LanguageSelect.tsx:35 7597 7597 #: src/components/LanguageSelect.tsx:36 7598 7598 msgid "Select language" 7599 - msgstr "" 7599 + msgstr "Выбрать язык" 7600 7600 7601 7601 #: src/view/com/composer/videos/SubtitleDialog.tsx:248 7602 7602 msgid "Select language..." ··· 8346 8346 8347 8347 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:164 8348 8348 msgid "Success" 8349 - msgstr "" 8349 + msgstr "Успех" 8350 8350 8351 8351 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:182 8352 8352 #: src/components/dialogs/EmailDialog/screens/Update.tsx:286 ··· 9089 9089 #: src/screens/Settings/ThreadPreferences.tsx:115 9090 9090 #: src/screens/Settings/ThreadPreferences.tsx:120 9091 9091 msgid "Tree view" 9092 - msgstr "" 9092 + msgstr "Деревовидный вид" 9093 9093 9094 9094 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:59 9095 9095 msgid "Trending" ··· 9156 9156 9157 9157 #: src/components/ageAssurance/AgeRestrictedScreen.tsx:51 9158 9158 msgid "Unavailable" 9159 - msgstr "" 9159 + msgstr "Недоступно" 9160 9160 9161 9161 #: src/view/com/feeds/MissingFeed.tsx:126 9162 9162 msgid "Unavailable feed information" 9163 - msgstr "" 9163 + msgstr "Информация о ленте недоступна" 9164 9164 9165 9165 #: src/components/dms/MessagesListBlockedFooter.tsx:97 9166 9166 #: src/components/dms/MessagesListBlockedFooter.tsx:104 ··· 9224 9224 9225 9225 #: src/components/BlockedGeoOverlay.tsx:37 9226 9226 msgid "Unfortunately, Bluesky is unavailable in Mississippi right now." 9227 - msgstr "" 9227 + msgstr "К сожалению, Bluesky в настоящее время недоступен в штате Миссисипи." 9228 9228 9229 9229 #: src/components/moderation/ReportDialog/index.tsx:372 9230 9230 msgid "Unfortunately, none of your subscribed labelers supports this report type." ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Изменение..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Загрузить вместо этого фотографию" 9395 9395 ··· 9587 9587 9588 9588 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:122 9589 9589 msgid "Verify again" 9590 - msgstr "" 9590 + msgstr "Подтвердить снова" 9591 9591 9592 9592 #. Button text and accessibility label for action to verify the user's email address using the code entered 9593 9593 #. Button text and accessibility label for action to verify the user's email address using the code entered ··· 9595 9595 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:367 9596 9596 msgctxt "action" 9597 9597 msgid "Verify code" 9598 - msgstr "" 9598 + msgstr "Подтвердить код" 9599 9599 9600 9600 #: src/screens/Settings/components/ChangeHandleDialog.tsx:538 9601 9601 #: src/screens/Settings/components/ChangeHandleDialog.tsx:559 ··· 9605 9605 #. Dialog title when a user is verifying their email address by entering a code they have been sent 9606 9606 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:214 9607 9607 msgid "Verify email code" 9608 - msgstr "" 9608 + msgstr "Подтвердить код электронной почты" 9609 9609 9610 9610 #: src/components/intents/VerifyEmailIntentDialog.tsx:67 9611 9611 msgid "Verify email dialog" ··· 9646 9646 #: src/screens/Settings/AboutSettings.tsx:126 9647 9647 #: src/screens/Settings/AboutSettings.tsx:155 9648 9648 msgid "Version {0}" 9649 - msgstr "" 9649 + msgstr "Версия {0}" 9650 9650 9651 9651 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:81 9652 9652 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:131 ··· 9906 9906 9907 9907 #: src/screens/Settings/InterestsSettings.tsx:154 9908 9908 msgid "We recommend selecting at least two interests." 9909 - msgstr "" 9909 + msgstr "Мы рекомендуем выбрать как минимум два интереса." 9910 9910 9911 9911 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:240 9912 9912 msgid "We sent an email to <0>{0}</0> containing a link. Please click on it to complete the email verification process." ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "У вас нет списков." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364 ··· 10707 10707 10708 10708 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:290 10709 10709 msgid "Your preferred language" 10710 - msgstr "" 10710 + msgstr "Ваш предпочтительный язык" 10711 10711 10712 10712 #: src/screens/Onboarding/StepFinished.tsx:422 10713 10713 msgid "Your profile picture" ··· 10715 10715 10716 10716 #: src/screens/Onboarding/StepFinished.tsx:350 10717 10717 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" 10718 - msgstr "" 10718 + msgstr "Ваша фотография в профиле, окруженная концентрическими кругами с фотографиями других пользователей" 10719 10719 10720 10720 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 10721 10721 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." ··· 10723 10723 10724 10724 #: src/view/com/composer/Composer.tsx:535 10725 10725 msgid "Your reply was sent" 10726 - msgstr "" 10726 + msgstr "Ваш ответ был отправлен" 10727 10727 10728 10728 #: src/components/moderation/ReportDialog/index.tsx:394 10729 10729 msgid "Your report will be sent to <0>{0}</0>."
+35 -35
src/locale/locales/sv/messages.po
··· 8 8 "Language: sv\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Swedish\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# personer har}} använt det här startpaketet!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, other {+# till}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Lägg till" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Lägg till i listor" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Tillagd i listan" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "Tillagt i startpaket" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Klicka för att öppna taggmenyn för {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Klicka för att försöka på nytt med misslyckat meddelande" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Fortsätt" ··· 2192 2192 msgstr "Utöka tråd…" 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Skapa" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Skapa ett konto utan att använda det här startpaketet" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Skapa en avatar istället" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Skapa anmälan för {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "Skapa startpaket" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Det gick inte att lägga till emoji-reaktion" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "Det gick inte att lägga till i startpaket" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Det gick inte att ta bort emoji-reaktion" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "Det gick inte att ta bort från startpaket" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Det gick inte att spara dina intressen." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Det gick inte att skicka" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "Gif-bild" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Ge din profil ett ansikte" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Hjälp" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Låt folk veta att du inte är en bot genom att ladda upp en bild eller skapa en avatar." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "Nya inlägg från {firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}}" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "Nytt startpaket" 5485 5485 ··· 5576 5576 5577 5577 #: src/screens/Onboarding/StepFinished.tsx:338 5578 5578 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." 5579 - msgstr "Inget mer doomscrollande orsakat av skräpfyllda algoritmer. Välj flöden som fungerar för dig – inte emot dig." 5579 + msgstr "Inget mer doomscrollande orsakat av skräpfyllda algoritmer. Hitta flöden som arbetar för dig – inte emot dig." 5580 5580 5581 5581 #: src/view/com/notifications/NotificationFeed.tsx:122 5582 5582 msgid "No notifications yet!" ··· 5750 5750 msgid "now" 5751 5751 msgstr "nu" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Nu" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Ett eller flera videoklipp saknar alternativtext." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Endast .jpg- och .png-filer stöds" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Bara följare som jag följer" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Endast bildfiler stöds" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Öppna" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Öppna avatarskapare" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Borttaget från sparade flöden" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "Togs bort från startpaket" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Försöker igen med den senaste misslyckade åtgärden" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 8572 8572 8573 8573 #: src/components/dialogs/BirthDateSettings.tsx:122 8574 8574 msgid "The birthdate you've entered means you are under 18 years old. Certain content and features may be unavailable to you." 8575 - msgstr "Det födelsedatum du har angett visar att du är under 18 år. Vissa funktioner och innehåll kan vara otillgängliga för dig." 8575 + msgstr "Enligt det födelsedatum du har angett är du under 18 år. Vissa funktioner och innehåll kan vara otillgängliga för dig." 8576 8576 8577 8577 #: src/screens/Moderation/index.tsx:426 8578 8578 msgid "The Bluesky web application" ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Uppdaterar…" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Ladda upp ett foto istället" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Du har inga listor." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "Du har inga startpaket." 10364 10364
+33 -33
src/locale/locales/th/messages.po
··· 8 8 "Language: th\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Thai\n" 14 14 "Plural-Forms: nplurals=1; plural=0;\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "เพิ่ม" ··· 782 782 msgid "Add to lists" 783 783 msgstr "เพิ่มในลิสต์" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "เพิ่มในลิสต์แล้ว" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "คลิกเพื่อพยายามส่งข้อความที่ล้มเหลวอีกครั้ง" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "ดำเนินการต่อ" ··· 2192 2192 msgstr "ดำเนินการต่อเธรด..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "สร้าง" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "สร้างอวตารแทน" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "สร้างรายงานสำหรับ {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "การส่งล้มเหลว" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "ทำให้โปรไฟล์ของคุณมีความน่าสนใจขึ้น" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "การช่วยเหลือ" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "ทำให้คนทราบว่าคุณไม่ใช่หุ่นยนต์โดยการอัพโหลตรูปภาพหรือการสร้างอวาตาร์" 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "ตอนนี้" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "ตอนนี้" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "" 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "สามารถลงได้แค่ไฟล์นามสกุล .jpg และ .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "เปิด" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "เปิดการสร้างอวาตาร์" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "ลบจากฟีตที่เซฟ" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "ลองทำกิจกรรมล่าสุดซึ่งเกิดข้อผิดพลาดอีกครั้ง" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "กำลังอัปเดต..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "อัปโหลดรูปภาพแทน" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "คุณไม่มีลิสต์" 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/tr/messages.po
··· 8 8 "Language: tr\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Turkish\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# kişi}} bu başlangıç paketini kullandı!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, other {+# daha}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Ekle" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Listelere ekle" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Listeye eklendi" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "Başlangıç paketine eklendi" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "{tag} etiket menüsünü açmak için tıklayın" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "İletilemeyen mesajı tekrar denemek için tıklayın" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Devam et" ··· 2192 2192 msgstr "Konuya devam et..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Oluştur" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Bu başlangıç ​​paketini kullanmadan bir hesap oluşturun" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Bunun yerine bir avatar oluştur" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "{0} için rapor oluştur" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "Başlangıç paketi oluştur" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Emoji tepkisi eklenemedi" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "Başlangıç paketine eklenemedi" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Emoji tepkisi kaldırılamadı" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "Başlangıç paketinden çıkarılamadı" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "İlgi alanlarınız kaydedilemedi." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Gönderilemedi" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Profilinize bir yüz ekleyin" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Yardım" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Bir resim yükleyerek veya bir avatar oluşturarak insanların bot olmadığınızı anlamalarına yardımcı olun." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişiden daha}} yeni gönderiler" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "Yeni başlangıç paketi" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "şimdi" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Şimdi" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Bir veya daha fazla videoda alternatif metin eksik." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Yalnızca .jpg ve .png dosyaları desteklenmektedir" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "Sadece benim takip ettiğim takipçiler" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Yalnızca resim dosyaları desteklenmektedir" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Aç" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Avatar oluşturucuyu aç" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Kayıtlı akışlardan kaldırıldı" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "Başlangıç paketinden çıkartıldı" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Son hataya neden olan son eylemi tekrarlar" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Güncelleniyor..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Bunun yerine bir görsel ekle" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Listeniz yok." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "Hiç başlangıç paketiniz yok." 10364 10364
+33 -33
src/locale/locales/uk/messages.po
··· 8 8 "Language: uk\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Ukrainian\n" 14 14 "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Додати" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Додати до списку" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Додано до списку" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Торкніться, щоб спробувати надіслати повідомлення знов" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Далі" ··· 2192 2192 msgstr "Продовжити гілку..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Створити" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Натомість створити аватар" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Створити звіт для {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Не вдалося надіслати" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Створити обличчя для вашого облікового запису" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Довідка" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Дайте людям знати, що ви не бот, завантаживши зображення або створивши аватар." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "щойно" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Щойно" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Одне або більше відео не мають описового тексту." 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Підтримуються лише файли формату .jpg і .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Підтримуються лише файли зображень" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Відкрити" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Відкрити створювач аватарів" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Вилучено зі збережених стрічок" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Повторити останню дію, яка спричинила помилку" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Оновлення..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Натомість завантажити фото" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "У вас немає списків." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+33 -33
src/locale/locales/vi/messages.po
··· 8 8 "Language: vi\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:45\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Vietnamese\n" 14 14 "Plural-Forms: nplurals=1; plural=0;\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "{0, plural, other {# người dùng}} đã dùng gói khởi đầu này!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "Thêm" ··· 782 782 msgid "Add to lists" 783 783 msgstr "Thêm vào danh sách" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "Thêm vào danh sách" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "Nhấn để mở trình đơn thẻ cho {tag}" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "Nhấn để thử lại tin nhắn không thành công" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "Tiếp tục" ··· 2192 2192 msgstr "Tiếp tục thảo luận..." 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "Tạo" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "Tạo tài khoản nhưng không sử dụng gói khởi đầu này" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "Tạo hình đại diện" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "Tạo báo cáo cho {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "Đã xảy ra lỗi khi thêm bày tỏ cảm xúc" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "Đã xảy ra lỗi khi xoá bày tỏ cảm xúc" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "Đã xảy ra lỗi khi lưu những mục quan tâm." 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "Không gởi được" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "Chọn hình cho hồ sơ của bạn" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "Giúp đỡ" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "Giúp người khác biết bạn không phải là bot bằng cách tải lên hoặc tạo hình đại diện." 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "bây giờ" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "Bây giờ" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "Một hoặc nhiều video thiếu văn bản thay thế" 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "Chỉ hỗ trợ tệp .jpg và .png" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "Chỉ hỗ trợ tệp hình ảnh" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "Mở" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "Mở trình tạo hình đại diện" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "Đã xóa khỏi bảng tin được lưu" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "Thử lại hành động cuối cùng (đã xảy ra lỗi)" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "Đang cập nhật..." 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "Tải lên ảnh" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "Bạn chưa có danh sách nào." 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "" 10364 10364
+34 -34
src/locale/locales/zh-CN/messages.po
··· 8 8 "Language: zh\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Chinese Simplified\n" 14 14 "Plural-Forms: nplurals=1; plural=0;\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "一共有 {0, plural,other {# 位用户}}使用过这个新手包!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural,other {+其他 # 个新手包}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "添加" ··· 782 782 msgid "Add to lists" 783 783 msgstr "添加至列表" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "已添加至列表" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "已添加至新手包" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "点按来开启 {tag} 的标签菜单" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "点击以重试发送私信" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "继续" ··· 2192 2192 msgstr "加载更多帖文串……" 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "创建" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "不使用此新手包注册账号" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "创建一个头像" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "创建针对 {0} 的举报" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "创建新手包" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "无法添加表情符号反应" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "无法添加到新手包" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "无法删除表情符号反应" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "无法从新手包删除" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "无法保存你的兴趣。" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "无法发送私信" 3519 3519 ··· 3902 3902 3903 3903 #: src/screens/Onboarding/StepFinished.tsx:336 3904 3904 msgid "Free your feed" 3905 - msgstr "自定义你的动态源" 3905 + msgstr "还你一个干净的时间线" 3906 3906 3907 3907 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54 3908 3908 #: src/lib/moderation/useReportOptions.ts:54 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "为你的个人资料选择头像" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "帮助" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "通过上传图片或生成头像,来让大家知道你不是机器人。" 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "来自 {firstAuthorName} 及其他 {additionalAuthorsCount, plural,one {{formattedAuthorsCount} 人} other {{formattedAuthorsCount} 人}}的新帖文" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "创建新手包" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "现在" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "现在" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "至少有一段视频缺失了替代文本。" 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "目前仅支持上传 .jpg 或 .png 格式的图片" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "仅限我关注的人" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "仅支持图片文件" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "开放" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "开启头像创建工具" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "已从已保存的动态源中删除" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "已从你的新手包中删除" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "重试上次出错的操作" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "更新中……" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "上传图片" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "你还没有建立任何列表。" 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "你目前没有任何新手包。" 10364 10364
+33 -33
src/locale/locales/zh-HK/messages.po
··· 8 8 "Language: zh\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Chinese Traditional, Hong Kong\n" 14 14 "Plural-Forms: nplurals=1; plural=0;\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "總共 {0, plural, other {# 個人}}用過呢個新手包!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, other {+其他 # 個新手包}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "新增" ··· 782 782 msgid "Add to lists" 783 783 msgstr "加到清單" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "經已加入到清單" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "經已加到新手包" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "撳低去打開 {tag} 嘅標籤選單" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "撳低去試多次傳送訊息" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "繼續" ··· 2192 2192 msgstr "繼續撈啲討論串……" 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "建立" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "唔用呢個新手包註冊帳號" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "或建立一個頭像" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "擧報 {0}" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "建立新手包" 2451 2451 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "加唔到 Emoji 反應" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "加唔到到新手包" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "刪唔到 Emoji 反應" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "喺新手包度刪唔到佢" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "儲存唔到你嘅心水主題。" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "傳送唔到" 3519 3519 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "整張相喺你嘅 profile 嗰度先啦" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "協助" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "上載一張相或整張頭像,等大家知道你唔係機械人。" 4167 4167 ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "嚟自 {firstAuthorName} 及其他 {additionalAuthorsCount, plural,one {{formattedAuthorsCount} 人} other {{formattedAuthorsCount} 人}}嘅新帖文" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "建立新手包" 5485 5485 ··· 5750 5750 msgid "now" 5751 5751 msgstr "而家" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "而家" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "一條或多條影片冇咗替代文字。" 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "淨係支援 .jpg 同 .png 檔圖片" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "僅限我跟返嘅人" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "淨係支援圖片檔案" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "開放" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "打開頭像製作器" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "經已喺儲存咗嘅動態源度刪除" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "經已喺新手包度刪除" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "試多次執行上一個出錯誤嘅動作" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "更新緊……" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "或上載圖片" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "你仲未有清單。" 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "你而家未有任何新手包。" 10364 10364
+43 -43
src/locale/locales/zh-TW/messages.po
··· 8 8 "Language: zh\n" 9 9 "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 - "PO-Revision-Date: 2025-08-29 14:45\n" 11 + "PO-Revision-Date: 2025-09-03 02:44\n" 12 12 "Last-Translator: \n" 13 13 "Language-Team: Chinese Traditional\n" 14 14 "Plural-Forms: nplurals=1; plural=0;\n" ··· 125 125 msgid "{0, plural, other {# people have}} used this starter pack!" 126 126 msgstr "總共有 {0, plural, other {# 個人}}使用過這個新手包!" 127 127 128 - #: src/components/dialogs/StarterPackDialog.tsx:370 128 + #: src/components/dialogs/StarterPackDialog.tsx:357 129 129 msgid "{0, plural, other {+# more}}" 130 130 msgstr "{0, plural, other {+其他 # 個新手包}}" 131 131 ··· 650 650 651 651 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:169 652 652 #: src/components/dialogs/MutedWords.tsx:328 653 - #: src/components/dialogs/StarterPackDialog.tsx:384 654 - #: src/components/dialogs/StarterPackDialog.tsx:390 653 + #: src/components/dialogs/StarterPackDialog.tsx:371 654 + #: src/components/dialogs/StarterPackDialog.tsx:377 655 655 #: src/view/com/modals/UserAddRemoveLists.tsx:235 656 656 msgid "Add" 657 657 msgstr "新增" ··· 782 782 msgid "Add to lists" 783 783 msgstr "新增至列表" 784 784 785 - #: src/components/dialogs/StarterPackDialog.tsx:187 785 + #: src/components/dialogs/StarterPackDialog.tsx:176 786 786 #: src/view/com/profile/ProfileMenu.tsx:308 787 787 #: src/view/com/profile/ProfileMenu.tsx:311 788 788 msgid "Add to starter packs" ··· 797 797 msgid "Added to list" 798 798 msgstr "成功新增至列表" 799 799 800 - #: src/components/dialogs/StarterPackDialog.tsx:271 800 + #: src/components/dialogs/StarterPackDialog.tsx:258 801 801 msgid "Added to starter pack" 802 802 msgstr "成功新增至新手包" 803 803 ··· 1879 1879 msgid "Click to open tag menu for {tag}" 1880 1880 msgstr "點此以開啟 {tag} 的標籤選單" 1881 1881 1882 - #: src/components/dms/MessageItem.tsx:317 1882 + #: src/components/dms/MessageItem.tsx:318 1883 1883 msgid "Click to retry failed message" 1884 1884 msgstr "點此以重新傳送訊息" 1885 1885 ··· 1901 1901 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 1902 1902 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 1903 1903 #: src/components/dialogs/SearchablePeopleList.tsx:295 1904 - #: src/components/dialogs/StarterPackDialog.tsx:190 1904 + #: src/components/dialogs/StarterPackDialog.tsx:179 1905 1905 #: src/components/dms/EmojiPopup.android.tsx:58 1906 1906 #: src/components/dms/ReportDialog.tsx:381 1907 1907 #: src/components/dms/ReportDialog.tsx:390 ··· 2174 2174 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:162 2175 2175 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 2176 2176 #: src/screens/Onboarding/StepInterests/index.tsx:254 2177 - #: src/screens/Onboarding/StepProfile/index.tsx:278 2177 + #: src/screens/Onboarding/StepProfile/index.tsx:280 2178 2178 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 2179 2179 msgid "Continue" 2180 2180 msgstr "繼續" ··· 2192 2192 msgstr "繼續載入討論串……" 2193 2193 2194 2194 #: src/screens/Onboarding/StepInterests/index.tsx:251 2195 - #: src/screens/Onboarding/StepProfile/index.tsx:275 2195 + #: src/screens/Onboarding/StepProfile/index.tsx:277 2196 2196 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 2197 2197 #: src/screens/Signup/BackNextButtons.tsx:60 2198 2198 msgid "Continue to next step" ··· 2378 2378 2379 2379 #. Text on button to create a new starter pack 2380 2380 #. Text on button to create a new starter pack 2381 - #: src/components/dialogs/StarterPackDialog.tsx:113 2382 - #: src/components/dialogs/StarterPackDialog.tsx:212 2381 + #: src/components/dialogs/StarterPackDialog.tsx:112 2382 + #: src/components/dialogs/StarterPackDialog.tsx:201 2383 2383 #: src/components/StarterPack/ProfileStarterPacks.tsx:300 2384 2384 msgid "Create" 2385 2385 msgstr "建立" ··· 2426 2426 msgid "Create an account without using this starter pack" 2427 2427 msgstr "不使用此新手包建立帳號" 2428 2428 2429 - #: src/screens/Onboarding/StepProfile/index.tsx:293 2429 + #: src/screens/Onboarding/StepProfile/index.tsx:295 2430 2430 msgid "Create an avatar instead" 2431 2431 msgstr "或是建立一個大頭貼照" 2432 2432 ··· 2444 2444 msgid "Create report for {0}" 2445 2445 msgstr "建立 {0} 的檢舉" 2446 2446 2447 - #: src/components/dialogs/StarterPackDialog.tsx:108 2448 - #: src/components/dialogs/StarterPackDialog.tsx:207 2447 + #: src/components/dialogs/StarterPackDialog.tsx:107 2448 + #: src/components/dialogs/StarterPackDialog.tsx:196 2449 2449 msgid "Create starter pack" 2450 2450 msgstr "建立新手包" 2451 2451 ··· 2772 2772 2773 2773 #: src/screens/Onboarding/StepFinished.tsx:347 2774 2774 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." 2775 - msgstr "告別網路酸民和標題黨,找到真正對你重要的人與對話。" 2775 + msgstr "告別網路酸民和標題黨,找到您真正在意的人與感興趣的對話。" 2776 2776 2777 2777 #: src/screens/Settings/components/ChangeHandleDialog.tsx:402 2778 2778 #: src/screens/Settings/components/ChangeHandleDialog.tsx:404 ··· 2815 2815 #: src/components/forms/DateField/index.tsx:109 2816 2816 #: src/components/Select/index.tsx:185 2817 2817 #: src/components/Select/index.tsx:192 2818 - #: src/screens/Onboarding/StepProfile/index.tsx:331 2819 - #: src/screens/Onboarding/StepProfile/index.tsx:334 2818 + #: src/screens/Onboarding/StepProfile/index.tsx:333 2819 + #: src/screens/Onboarding/StepProfile/index.tsx:336 2820 2820 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:215 2821 2821 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:222 2822 2822 #: src/view/com/auth/server-input/index.tsx:232 ··· 3382 3382 msgid "Failed to add emoji reaction" 3383 3383 msgstr "無法加入表情符號反應" 3384 3384 3385 - #: src/components/dialogs/StarterPackDialog.tsx:283 3385 + #: src/components/dialogs/StarterPackDialog.tsx:270 3386 3386 msgid "Failed to add to starter pack" 3387 3387 msgstr "無法新增至新手包" 3388 3388 ··· 3492 3492 msgid "Failed to remove emoji reaction" 3493 3493 msgstr "無法刪除表情符號反應" 3494 3494 3495 - #: src/components/dialogs/StarterPackDialog.tsx:302 3495 + #: src/components/dialogs/StarterPackDialog.tsx:289 3496 3496 msgid "Failed to remove from starter pack" 3497 3497 msgstr "無法從新手包刪除" 3498 3498 ··· 3513 3513 msgid "Failed to save your interests." 3514 3514 msgstr "無法儲存感興趣的主題。" 3515 3515 3516 - #: src/components/dms/MessageItem.tsx:310 3516 + #: src/components/dms/MessageItem.tsx:311 3517 3517 msgid "Failed to send" 3518 3518 msgstr "無法傳送" 3519 3519 ··· 3684 3684 3685 3685 #: src/screens/Onboarding/StepFinished.tsx:345 3686 3686 msgid "Find your people" 3687 - msgstr "" 3687 + msgstr "找到與您志同道合的人" 3688 3688 3689 3689 #: src/screens/StarterPack/Wizard/index.tsx:218 3690 3690 msgid "Finish" ··· 3885 3885 3886 3886 #: src/screens/Onboarding/StepFinished.tsx:354 3887 3887 msgid "Forget the noise" 3888 - msgstr "忘記無盡的騷擾" 3888 + msgstr "忘記那些無盡的喧擾" 3889 3889 3890 3890 #: src/screens/Login/index.tsx:153 3891 3891 #: src/screens/Login/index.tsx:168 ··· 3902 3902 3903 3903 #: src/screens/Onboarding/StepFinished.tsx:336 3904 3904 msgid "Free your feed" 3905 - msgstr "客製化您的動態源" 3905 + msgstr "還您一個乾淨的河道" 3906 3906 3907 3907 #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:54 3908 3908 #: src/lib/moderation/useReportOptions.ts:54 ··· 3999 3999 msgid "GIF" 4000 4000 msgstr "GIF" 4001 4001 4002 - #: src/screens/Onboarding/StepProfile/index.tsx:233 4002 + #: src/screens/Onboarding/StepProfile/index.tsx:235 4003 4003 msgid "Give your profile a face" 4004 4004 msgstr "為您的個人檔案選擇大頭貼照" 4005 4005 ··· 4161 4161 msgid "Help" 4162 4162 msgstr "幫助" 4163 4163 4164 - #: src/screens/Onboarding/StepProfile/index.tsx:236 4164 + #: src/screens/Onboarding/StepProfile/index.tsx:238 4165 4165 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 4166 4166 msgstr "透過上傳圖片或建立大頭貼照,讓大家知道您不是機器人。" 4167 4167 ··· 4353 4353 4354 4354 #: src/screens/Settings/components/ChangeHandleDialog.tsx:272 4355 4355 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>" 4356 - msgstr "如果您擁有自己的網域,可以將其設定為您的帳號代碼。同時還可以證明自己的身分。<0>瞭解詳情。</0>" 4356 + msgstr "如果您擁有自己的網域,可以將其設定為您的帳號代碼。同時還可以證明自己的身分。<0>在此瞭解詳情。</0>" 4357 4357 4358 4358 #: src/components/dialogs/EmailDialog/screens/Verify.tsx:272 4359 4359 msgid "If you need to update your email, <0>click here</0>." ··· 5479 5479 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" 5480 5480 msgstr "來自 {firstAuthorName} 和{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}的新貼文" 5481 5481 5482 - #: src/components/dialogs/StarterPackDialog.tsx:204 5482 + #: src/components/dialogs/StarterPackDialog.tsx:193 5483 5483 msgid "New starter pack" 5484 5484 msgstr "建立新手包" 5485 5485 ··· 5533 5533 5534 5534 #: src/screens/Onboarding/StepFinished.tsx:356 5535 5535 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." 5536 - msgstr "無廣告,無侵入式追踪,當然也沒有互動陷阱。 Bluesky 尊重您的時間和注意力。" 5536 + msgstr "無廣告、無侵入式追蹤,更沒有成癮性設計。Bluesky 尊重您寶貴的時間與注意力。" 5537 5537 5538 5538 #: src/screens/Settings/AppPasswords.tsx:108 5539 5539 msgid "No app passwords yet" ··· 5576 5576 5577 5577 #: src/screens/Onboarding/StepFinished.tsx:338 5578 5578 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." 5579 - msgstr "告別那些充滿垃圾資訊的演算法,找到對你有利而非有害的動態源。" 5579 + msgstr "告別那些充滿垃圾資訊的演算法,找到對您有利而非有害的動態源。" 5580 5580 5581 5581 #: src/view/com/notifications/NotificationFeed.tsx:122 5582 5582 msgid "No notifications yet!" ··· 5750 5750 msgid "now" 5751 5751 msgstr "剛剛" 5752 5752 5753 - #: src/components/dms/MessageItem.tsx:274 5753 + #: src/components/dms/MessageItem.tsx:275 5754 5754 msgid "Now" 5755 5755 msgstr "剛剛" 5756 5756 ··· 5827 5827 msgid "One or more videos is missing alt text." 5828 5828 msgstr "至少有一段影片缺少了替代文字。" 5829 5829 5830 - #: src/screens/Onboarding/StepProfile/index.tsx:116 5830 + #: src/screens/Onboarding/StepProfile/index.tsx:118 5831 5831 msgid "Only .jpg and .png files are supported" 5832 5832 msgstr "僅支援 .jpg 或 .png 格式的圖片" 5833 5833 ··· 5841 5841 msgid "Only followers who I follow" 5842 5842 msgstr "僅限我回跟的跟隨者" 5843 5843 5844 - #: src/lib/media/picker.shared.ts:31 5844 + #: src/lib/media/picker.shared.ts:33 5845 5845 msgid "Only image files are supported" 5846 5846 msgstr "僅支援圖片檔案" 5847 5847 ··· 5866 5866 msgid "Open" 5867 5867 msgstr "開放" 5868 5868 5869 - #: src/screens/Onboarding/StepProfile/index.tsx:287 5869 + #: src/screens/Onboarding/StepProfile/index.tsx:289 5870 5870 msgid "Open avatar creator" 5871 5871 msgstr "開啟大頭貼照建立工具" 5872 5872 ··· 6797 6797 6798 6798 #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:171 6799 6799 #: src/components/dialogs/MutedWords.tsx:438 6800 - #: src/components/dialogs/StarterPackDialog.tsx:384 6801 - #: src/components/dialogs/StarterPackDialog.tsx:390 6800 + #: src/components/dialogs/StarterPackDialog.tsx:371 6801 + #: src/components/dialogs/StarterPackDialog.tsx:377 6802 6802 #: src/components/FeedCard.tsx:343 6803 6803 #: src/components/StarterPack/Wizard/WizardListCard.tsx:104 6804 6804 #: src/components/StarterPack/Wizard/WizardListCard.tsx:111 ··· 6931 6931 msgid "Removed from saved feeds" 6932 6932 msgstr "成功從儲存的動態源中刪除" 6933 6933 6934 - #: src/components/dialogs/StarterPackDialog.tsx:290 6934 + #: src/components/dialogs/StarterPackDialog.tsx:277 6935 6935 msgid "Removed from starter pack" 6936 6936 msgstr "成功從新手包刪除" 6937 6937 ··· 7248 7248 msgid "Retries the last action, which errored out" 7249 7249 msgstr "重新執行上一個出現錯誤的動作" 7250 7250 7251 - #: src/components/dms/MessageItem.tsx:321 7251 + #: src/components/dms/MessageItem.tsx:322 7252 7252 #: src/components/Error.tsx:65 7253 7253 #: src/components/Lists.tsx:111 7254 7254 #: src/components/moderation/ReportDialog/index.tsx:229 ··· 8572 8572 8573 8573 #: src/components/dialogs/BirthDateSettings.tsx:122 8574 8574 msgid "The birthdate you've entered means you are under 18 years old. Certain content and features may be unavailable to you." 8575 - msgstr "您輸入的出生日期表示您未滿 18 歲,你可能無法使用一些功能或檢視某些內容。" 8575 + msgstr "您輸入的出生日期表示您未滿 18 歲,可能無法使用一些功能或檢視某些內容。" 8576 8576 8577 8577 #: src/screens/Moderation/index.tsx:426 8578 8578 msgid "The Bluesky web application" ··· 9389 9389 msgid "Updating..." 9390 9390 msgstr "更新中……" 9391 9391 9392 - #: src/screens/Onboarding/StepProfile/index.tsx:291 9392 + #: src/screens/Onboarding/StepProfile/index.tsx:293 9393 9393 msgid "Upload a photo instead" 9394 9394 msgstr "或是上傳圖片" 9395 9395 ··· 10358 10358 msgid "You have no lists." 10359 10359 msgstr "您還沒有建立任何列表。" 10360 10360 10361 - #: src/components/dialogs/StarterPackDialog.tsx:102 10361 + #: src/components/dialogs/StarterPackDialog.tsx:101 10362 10362 msgid "You have no starter packs." 10363 10363 msgstr "您目前沒有任何新手包。" 10364 10364 ··· 10711 10711 10712 10712 #: src/screens/Onboarding/StepFinished.tsx:422 10713 10713 msgid "Your profile picture" 10714 - msgstr "" 10714 + msgstr "您的大頭貼照" 10715 10715 10716 10716 #: src/screens/Onboarding/StepFinished.tsx:350 10717 10717 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" 10718 - msgstr "" 10718 + msgstr "您的大頭貼照在中心,周圈環繞著許多用戶的大頭貼照" 10719 10719 10720 10720 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 10721 10721 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."
+4 -2
src/screens/Onboarding/StepProfile/index.tsx
··· 4 4 import { 5 5 type ImagePickerOptions, 6 6 launchImageLibraryAsync, 7 - MediaTypeOptions, 7 + UIImagePickerPreferredAssetRepresentationMode, 8 8 } from 'expo-image-picker' 9 9 import {msg, Trans} from '@lingui/macro' 10 10 import {useLingui} from '@lingui/react' ··· 97 97 const response = await sheetWrapper( 98 98 launchImageLibraryAsync({ 99 99 exif: false, 100 - mediaTypes: MediaTypeOptions.Images, 100 + mediaTypes: ['images'], 101 101 quality: 1, 102 102 ...opts, 103 103 legacy: true, 104 + preferredAssetRepresentationMode: 105 + UIImagePickerPreferredAssetRepresentationMode.Automatic, 104 106 }), 105 107 ) 106 108