Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add `en-GB` localisation (#5952)

* Create blank en-GB/messages.po

* localise certain strings for en-GB

* Update lingui.config.js

* Update dates.ts

* Update helpers.ts

* Update i18n.ts

* Update i18n.web.ts

* Update languages.ts

* Update i18n.ts

authored by

surfdude29 and committed by
GitHub
498b83ae cd6fc13e

+7946
+1
lingui.config.js
··· 4 4 'en', 5 5 'ca', 6 6 'de', 7 + 'en-GB', 7 8 'es', 8 9 'fi', 9 10 'fr',
+2
src/components/hooks/dates.ts
··· 12 12 import { 13 13 ca, 14 14 de, 15 + enGB, 15 16 es, 16 17 fi, 17 18 fr, ··· 39 40 en: undefined, 40 41 ca, 41 42 de, 43 + ['en-GB']: enGB, 42 44 es, 43 45 fi, 44 46 fr,
+2
src/locale/helpers.ts
··· 123 123 return AppLanguage.ca 124 124 case 'de': 125 125 return AppLanguage.de 126 + case 'en-GB': 127 + return AppLanguage.en_GB 126 128 case 'es': 127 129 return AppLanguage.es 128 130 case 'fi':
+9
src/locale/i18n.ts
··· 14 14 import {messages as messagesCa} from '#/locale/locales/ca/messages' 15 15 import {messages as messagesDe} from '#/locale/locales/de/messages' 16 16 import {messages as messagesEn} from '#/locale/locales/en/messages' 17 + import {messages as messagesEn_GB} from '#/locale/locales/en-GB/messages' 17 18 import {messages as messagesEs} from '#/locale/locales/es/messages' 18 19 import {messages as messagesFi} from '#/locale/locales/fi/messages' 19 20 import {messages as messagesFr} from '#/locale/locales/fr/messages' ··· 50 51 await Promise.all([ 51 52 import('@formatjs/intl-pluralrules/locale-data/de'), 52 53 import('@formatjs/intl-numberformat/locale-data/de'), 54 + ]) 55 + break 56 + } 57 + case AppLanguage.en_GB: { 58 + i18n.loadAndActivate({locale, messages: messagesEn_GB}) 59 + await Promise.all([ 60 + import('@formatjs/intl-pluralrules/locale-data/en'), 61 + import('@formatjs/intl-numberformat/locale-data/en-GB'), 53 62 ]) 54 63 break 55 64 }
+4
src/locale/i18n.web.ts
··· 20 20 mod = await import(`./locales/de/messages`) 21 21 break 22 22 } 23 + case AppLanguage.en_GB: { 24 + mod = await import(`./locales/en-GB/messages`) 25 + break 26 + } 23 27 case AppLanguage.es: { 24 28 mod = await import(`./locales/es/messages`) 25 29 break
+2
src/locale/languages.ts
··· 8 8 en = 'en', 9 9 ca = 'ca', 10 10 de = 'de', 11 + en_GB = 'en-GB', 11 12 es = 'es', 12 13 fi = 'fi', 13 14 fr = 'fr', ··· 35 36 {code2: AppLanguage.en, name: 'English'}, 36 37 {code2: AppLanguage.ca, name: 'Català – Catalan'}, 37 38 {code2: AppLanguage.de, name: 'Deutsch – German'}, 39 + {code2: AppLanguage.en_GB, name: 'English (UK)'}, 38 40 {code2: AppLanguage.es, name: 'Español – Spanish'}, 39 41 {code2: AppLanguage.fi, name: 'Suomi – Finnish'}, 40 42 {code2: AppLanguage.fr, name: 'Français – French'},
+7926
src/locale/locales/en-GB/messages.po
··· 1 + msgid "" 2 + msgstr "" 3 + "POT-Creation-Date: 2023-11-05 16:01-0800\n" 4 + "MIME-Version: 1.0\n" 5 + "Content-Type: text/plain; charset=utf-8\n" 6 + "Content-Transfer-Encoding: 8bit\n" 7 + "X-Generator: @lingui/cli\n" 8 + "Language: en-GB\n" 9 + "Project-Id-Version: \n" 10 + "Report-Msgid-Bugs-To: \n" 11 + "PO-Revision-Date: 2024-10-26 18:30+0000\n" 12 + "Last-Translator: surfdude29 (@surfdude29.ispost.ing)\n" 13 + "Language-Team: surfdude29\n" 14 + "Plural-Forms: \n" 15 + 16 + #: src/screens/Messages/components/ChatListItem.tsx:130 17 + msgid "(contains embedded content)" 18 + msgstr "" 19 + 20 + #: src/view/com/modals/VerifyEmail.tsx:150 21 + msgid "(no email)" 22 + msgstr "" 23 + 24 + #: src/view/com/notifications/FeedItem.tsx:232 25 + #: src/view/com/notifications/FeedItem.tsx:327 26 + msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" 27 + msgstr "" 28 + 29 + #: src/lib/hooks/useTimeAgo.ts:156 30 + msgid "{0, plural, one {# day} other {# days}}" 31 + msgstr "" 32 + 33 + #: src/lib/hooks/useTimeAgo.ts:146 34 + msgid "{0, plural, one {# hour} other {# hours}}" 35 + msgstr "" 36 + 37 + #: src/components/moderation/LabelsOnMe.tsx:54 38 + msgid "{0, plural, one {# label has been placed on this account} other {# labels have been placed on this account}}" 39 + msgstr "" 40 + 41 + #: src/components/moderation/LabelsOnMe.tsx:60 42 + msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" 43 + msgstr "" 44 + 45 + #: src/lib/hooks/useTimeAgo.ts:136 46 + msgid "{0, plural, one {# minute} other {# minutes}}" 47 + msgstr "" 48 + 49 + #: src/lib/hooks/useTimeAgo.ts:167 50 + msgid "{0, plural, one {# month} other {# months}}" 51 + msgstr "" 52 + 53 + #: src/view/com/util/post-ctrls/RepostButton.tsx:71 54 + msgid "{0, plural, one {# repost} other {# reposts}}" 55 + msgstr "" 56 + 57 + #: src/lib/hooks/useTimeAgo.ts:126 58 + msgid "{0, plural, one {# second} other {# seconds}}" 59 + msgstr "" 60 + 61 + #: src/components/ProfileHoverCard/index.web.tsx:398 62 + #: src/screens/Profile/Header/Metrics.tsx:23 63 + msgid "{0, plural, one {follower} other {followers}}" 64 + msgstr "" 65 + 66 + #: src/components/ProfileHoverCard/index.web.tsx:402 67 + #: src/screens/Profile/Header/Metrics.tsx:27 68 + msgid "{0, plural, one {following} other {following}}" 69 + msgstr "" 70 + 71 + #: src/view/com/util/post-ctrls/PostCtrls.tsx:312 72 + msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" 73 + msgstr "" 74 + 75 + #: src/view/com/post-thread/PostThreadItem.tsx:434 76 + msgid "{0, plural, one {like} other {likes}}" 77 + msgstr "" 78 + 79 + #: src/components/FeedCard.tsx:213 80 + #: src/view/com/feeds/FeedSourceCard.tsx:300 81 + msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" 82 + msgstr "" 83 + 84 + #: src/screens/Profile/Header/Metrics.tsx:59 85 + msgid "{0, plural, one {post} other {posts}}" 86 + msgstr "" 87 + 88 + #: src/view/com/post-thread/PostThreadItem.tsx:418 89 + msgid "{0, plural, one {quote} other {quotes}}" 90 + msgstr "" 91 + 92 + #: src/view/com/util/post-ctrls/PostCtrls.tsx:269 93 + msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" 94 + msgstr "" 95 + 96 + #: src/view/com/post-thread/PostThreadItem.tsx:400 97 + msgid "{0, plural, one {repost} other {reposts}}" 98 + msgstr "" 99 + 100 + #: src/view/com/util/post-ctrls/PostCtrls.tsx:308 101 + msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" 102 + msgstr "" 103 + 104 + #. Pattern: {wordValue} in tags 105 + #: src/components/dialogs/MutedWords.tsx:475 106 + msgid "{0} <0>in <1>tags</1></0>" 107 + msgstr "" 108 + 109 + #. Pattern: {wordValue} in text, tags 110 + #: src/components/dialogs/MutedWords.tsx:465 111 + msgid "{0} <0>in <1>text & tags</1></0>" 112 + msgstr "" 113 + 114 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:219 115 + msgid "{0} joined this week" 116 + msgstr "" 117 + 118 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:195 119 + msgid "{0} of {1}" 120 + msgstr "" 121 + 122 + #: src/screens/StarterPack/StarterPackScreen.tsx:467 123 + msgid "{0} people have used this starter pack!" 124 + msgstr "" 125 + 126 + #: src/view/com/util/UserAvatar.tsx:435 127 + msgid "{0}'s avatar" 128 + msgstr "" 129 + 130 + #: src/screens/StarterPack/Wizard/StepDetails.tsx:68 131 + msgid "{0}'s favorite feeds and people - join me!" 132 + msgstr "{0}'s favourite feeds and people – join me!" 133 + 134 + #: src/screens/StarterPack/Wizard/StepDetails.tsx:47 135 + msgid "{0}'s starter pack" 136 + msgstr "" 137 + 138 + #. How many days have passed, displayed in a narrow form 139 + #: src/lib/hooks/useTimeAgo.ts:158 140 + msgid "{0}d" 141 + msgstr "" 142 + 143 + #. How many hours have passed, displayed in a narrow form 144 + #: src/lib/hooks/useTimeAgo.ts:148 145 + msgid "{0}h" 146 + msgstr "" 147 + 148 + #. How many minutes have passed, displayed in a narrow form 149 + #: src/lib/hooks/useTimeAgo.ts:138 150 + msgid "{0}m" 151 + msgstr "" 152 + 153 + #. How many months have passed, displayed in a narrow form 154 + #: src/lib/hooks/useTimeAgo.ts:169 155 + msgid "{0}mo" 156 + msgstr "" 157 + 158 + #. How many seconds have passed, displayed in a narrow form 159 + #: src/lib/hooks/useTimeAgo.ts:128 160 + msgid "{0}s" 161 + msgstr "" 162 + 163 + #: src/components/LabelingServiceCard/index.tsx:96 164 + msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" 165 + msgstr "" 166 + 167 + #: src/lib/generate-starterpack.ts:108 168 + #: src/screens/StarterPack/Wizard/index.tsx:174 169 + msgid "{displayName}'s Starter Pack" 170 + msgstr "" 171 + 172 + #: src/screens/SignupQueued.tsx:207 173 + msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" 174 + msgstr "" 175 + 176 + #: src/screens/SignupQueued.tsx:213 177 + msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" 178 + msgstr "" 179 + 180 + #: src/components/ProfileHoverCard/index.web.tsx:508 181 + #: src/screens/Profile/Header/Metrics.tsx:50 182 + msgid "{following} following" 183 + msgstr "" 184 + 185 + #: src/components/dms/dialogs/SearchablePeopleList.tsx:384 186 + msgid "{handle} can't be messaged" 187 + msgstr "" 188 + 189 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:281 190 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:294 191 + #: src/view/screens/ProfileFeed.tsx:584 192 + msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" 193 + msgstr "" 194 + 195 + #: src/view/shell/Drawer.tsx:458 196 + msgid "{numUnreadNotifications} unread" 197 + msgstr "" 198 + 199 + #: src/components/NewskieDialog.tsx:116 200 + msgid "{profileName} joined Bluesky {0} ago" 201 + msgstr "" 202 + 203 + #: src/components/NewskieDialog.tsx:111 204 + msgid "{profileName} joined Bluesky using a starter pack {0} ago" 205 + msgstr "" 206 + 207 + #: src/screens/StarterPack/Wizard/index.tsx:466 208 + msgctxt "profiles" 209 + msgid "<0>{0}, </0><1>{1}, </1>and {2, plural, one {# other} other {# others}} are included in your starter pack" 210 + msgstr "" 211 + 212 + #: src/screens/StarterPack/Wizard/index.tsx:519 213 + msgctxt "feeds" 214 + msgid "<0>{0}, </0><1>{1}, </1>and {2, plural, one {# other} other {# others}} are included in your starter pack" 215 + msgstr "" 216 + 217 + #: src/view/shell/Drawer.tsx:108 218 + msgid "<0>{0}</0> {1, plural, one {follower} other {followers}}" 219 + msgstr "" 220 + 221 + #: src/view/shell/Drawer.tsx:123 222 + msgid "<0>{0}</0> {1, plural, one {following} other {following}}" 223 + msgstr "" 224 + 225 + #: src/screens/StarterPack/Wizard/index.tsx:507 226 + msgid "<0>{0}</0> and<1> </1><2>{1} </2>are included in your starter pack" 227 + msgstr "" 228 + 229 + #: src/screens/StarterPack/Wizard/index.tsx:500 230 + msgid "<0>{0}</0> is included in your starter pack" 231 + msgstr "" 232 + 233 + #: src/components/WhoCanReply.tsx:274 234 + msgid "<0>{0}</0> members" 235 + msgstr "" 236 + 237 + #: src/components/dms/DateDivider.tsx:69 238 + msgid "<0>{date}</0> at {time}" 239 + msgstr "" 240 + 241 + #: src/screens/StarterPack/Wizard/index.tsx:457 242 + msgid "<0>You</0> and<1> </1><2>{0} </2>are included in your starter pack" 243 + msgstr "" 244 + 245 + #: src/screens/Profile/Header/Handle.tsx:53 246 + msgid "⚠Invalid Handle" 247 + msgstr "" 248 + 249 + #: src/components/dialogs/MutedWords.tsx:193 250 + msgid "24 hours" 251 + msgstr "" 252 + 253 + #: src/screens/Login/LoginForm.tsx:250 254 + msgid "2FA Confirmation" 255 + msgstr "" 256 + 257 + #: src/components/dialogs/MutedWords.tsx:232 258 + msgid "30 days" 259 + msgstr "" 260 + 261 + #: src/components/dialogs/MutedWords.tsx:217 262 + msgid "7 days" 263 + msgstr "" 264 + 265 + #: src/view/com/util/ViewHeader.tsx:89 266 + #: src/view/screens/Search/Search.tsx:877 267 + msgid "Access navigation links and settings" 268 + msgstr "" 269 + 270 + #: src/view/com/home/HomeHeaderLayoutMobile.tsx:56 271 + msgid "Access profile and other navigation links" 272 + msgstr "" 273 + 274 + #: src/view/screens/Settings/index.tsx:463 275 + msgid "Accessibility" 276 + msgstr "" 277 + 278 + #: src/view/screens/Settings/index.tsx:454 279 + msgid "Accessibility settings" 280 + msgstr "" 281 + 282 + #: src/Navigation.tsx:317 283 + #: src/view/screens/AccessibilitySettings.tsx:70 284 + msgid "Accessibility Settings" 285 + msgstr "" 286 + 287 + #: src/screens/Login/LoginForm.tsx:176 288 + #: src/view/screens/Settings/index.tsx:315 289 + #: src/view/screens/Settings/index.tsx:718 290 + msgid "Account" 291 + msgstr "" 292 + 293 + #: src/view/com/profile/ProfileMenu.tsx:132 294 + msgid "Account blocked" 295 + msgstr "" 296 + 297 + #: src/view/com/profile/ProfileMenu.tsx:145 298 + msgid "Account followed" 299 + msgstr "" 300 + 301 + #: src/view/com/profile/ProfileMenu.tsx:108 302 + msgid "Account muted" 303 + msgstr "" 304 + 305 + #: src/components/moderation/ModerationDetailsDialog.tsx:102 306 + #: src/lib/moderation/useModerationCauseDescription.ts:96 307 + msgid "Account Muted" 308 + msgstr "" 309 + 310 + #: src/components/moderation/ModerationDetailsDialog.tsx:88 311 + msgid "Account Muted by List" 312 + msgstr "" 313 + 314 + #: src/view/com/util/AccountDropdownBtn.tsx:43 315 + msgid "Account options" 316 + msgstr "" 317 + 318 + #: src/view/com/util/AccountDropdownBtn.tsx:59 319 + msgid "Account removed from quick access" 320 + msgstr "" 321 + 322 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:129 323 + #: src/view/com/profile/ProfileMenu.tsx:122 324 + msgid "Account unblocked" 325 + msgstr "" 326 + 327 + #: src/view/com/profile/ProfileMenu.tsx:157 328 + msgid "Account unfollowed" 329 + msgstr "" 330 + 331 + #: src/view/com/profile/ProfileMenu.tsx:98 332 + msgid "Account unmuted" 333 + msgstr "" 334 + 335 + #: src/components/dialogs/MutedWords.tsx:328 336 + #: src/view/com/modals/ListAddRemoveUsers.tsx:269 337 + #: src/view/com/modals/UserAddRemoveLists.tsx:235 338 + #: src/view/screens/ProfileList.tsx:931 339 + msgid "Add" 340 + msgstr "" 341 + 342 + #: src/screens/StarterPack/Wizard/index.tsx:568 343 + msgid "Add {0} more to continue" 344 + msgstr "" 345 + 346 + #: src/components/StarterPack/Wizard/WizardListCard.tsx:59 347 + msgid "Add {displayName} to starter pack" 348 + msgstr "" 349 + 350 + #: src/view/com/modals/SelfLabel.tsx:57 351 + msgid "Add a content warning" 352 + msgstr "" 353 + 354 + #: src/view/screens/ProfileList.tsx:921 355 + msgid "Add a user to this list" 356 + msgstr "" 357 + 358 + #: src/components/dialogs/SwitchAccount.tsx:55 359 + #: src/screens/Deactivated.tsx:199 360 + #: src/view/screens/Settings/index.tsx:401 361 + #: src/view/screens/Settings/index.tsx:410 362 + msgid "Add account" 363 + msgstr "" 364 + 365 + #: src/view/com/composer/GifAltText.tsx:76 366 + #: src/view/com/composer/GifAltText.tsx:145 367 + #: src/view/com/composer/GifAltText.tsx:208 368 + #: src/view/com/composer/photos/Gallery.tsx:166 369 + #: src/view/com/composer/photos/Gallery.tsx:213 370 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:89 371 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:94 372 + msgid "Add alt text" 373 + msgstr "" 374 + 375 + #: src/view/com/composer/videos/SubtitleDialog.tsx:107 376 + msgid "Add alt text (optional)" 377 + msgstr "" 378 + 379 + #: src/view/screens/AppPasswords.tsx:102 380 + #: src/view/screens/AppPasswords.tsx:144 381 + #: src/view/screens/AppPasswords.tsx:157 382 + msgid "Add App Password" 383 + msgstr "" 384 + 385 + #: src/components/dialogs/MutedWords.tsx:321 386 + msgid "Add mute word for configured settings" 387 + msgstr "" 388 + 389 + #: src/components/dialogs/MutedWords.tsx:112 390 + msgid "Add muted words and tags" 391 + msgstr "" 392 + 393 + #: src/screens/Home/NoFeedsPinned.tsx:99 394 + msgid "Add recommended feeds" 395 + msgstr "" 396 + 397 + #: src/screens/StarterPack/Wizard/index.tsx:488 398 + msgid "Add some feeds to your starter pack!" 399 + msgstr "" 400 + 401 + #: src/screens/Feeds/NoFollowingFeed.tsx:41 402 + msgid "Add the default feed of only people you follow" 403 + msgstr "" 404 + 405 + #: src/view/com/modals/ChangeHandle.tsx:403 406 + msgid "Add the following DNS record to your domain:" 407 + msgstr "" 408 + 409 + #: src/components/FeedCard.tsx:296 410 + msgid "Add this feed to your feeds" 411 + msgstr "" 412 + 413 + #: src/view/com/profile/ProfileMenu.tsx:243 414 + #: src/view/com/profile/ProfileMenu.tsx:246 415 + msgid "Add to Lists" 416 + msgstr "" 417 + 418 + #: src/view/com/feeds/FeedSourceCard.tsx:266 419 + msgid "Add to my feeds" 420 + msgstr "" 421 + 422 + #: src/view/com/modals/ListAddRemoveUsers.tsx:192 423 + #: src/view/com/modals/UserAddRemoveLists.tsx:162 424 + msgid "Added to list" 425 + msgstr "" 426 + 427 + #: src/view/com/feeds/FeedSourceCard.tsx:125 428 + msgid "Added to my feeds" 429 + msgstr "" 430 + 431 + #: src/lib/moderation/useGlobalLabelStrings.ts:34 432 + #: src/lib/moderation/useModerationCauseDescription.ts:144 433 + #: src/view/com/modals/SelfLabel.tsx:76 434 + msgid "Adult Content" 435 + msgstr "" 436 + 437 + #: src/screens/Moderation/index.tsx:363 438 + msgid "Adult content can only be enabled via the Web at <0>bsky.app</0>." 439 + msgstr "" 440 + 441 + #: src/components/moderation/LabelPreference.tsx:241 442 + msgid "Adult content is disabled." 443 + msgstr "" 444 + 445 + #: src/view/com/composer/labels/LabelsBtn.tsx:160 446 + #: src/view/com/composer/labels/LabelsBtn.tsx:219 447 + msgid "Adult Content labels" 448 + msgstr "" 449 + 450 + #: src/screens/Moderation/index.tsx:407 451 + #: src/view/screens/Settings/index.tsx:652 452 + msgid "Advanced" 453 + msgstr "" 454 + 455 + #: src/state/shell/progress-guide.tsx:171 456 + msgid "Algorithm training complete!" 457 + msgstr "" 458 + 459 + #: src/screens/StarterPack/StarterPackScreen.tsx:370 460 + msgid "All accounts have been followed!" 461 + msgstr "" 462 + 463 + #: src/view/screens/Feeds.tsx:734 464 + msgid "All the feeds you've saved, right in one place." 465 + msgstr "" 466 + 467 + #: src/view/com/modals/AddAppPasswords.tsx:188 468 + #: src/view/com/modals/AddAppPasswords.tsx:195 469 + msgid "Allow access to your direct messages" 470 + msgstr "" 471 + 472 + #: src/screens/Messages/Settings.tsx:62 473 + #: src/screens/Messages/Settings.tsx:65 474 + msgid "Allow new messages from" 475 + msgstr "" 476 + 477 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:360 478 + msgid "Allow replies from:" 479 + msgstr "" 480 + 481 + #: src/view/screens/AppPasswords.tsx:263 482 + msgid "Allows access to direct messages" 483 + msgstr "" 484 + 485 + #: src/screens/Login/ForgotPasswordForm.tsx:171 486 + #: src/view/com/modals/ChangePassword.tsx:171 487 + msgid "Already have a code?" 488 + msgstr "" 489 + 490 + #: src/screens/Login/ChooseAccountForm.tsx:43 491 + msgid "Already signed in as @{0}" 492 + msgstr "" 493 + 494 + #: src/view/com/composer/GifAltText.tsx:100 495 + #: src/view/com/composer/photos/Gallery.tsx:184 496 + #: src/view/com/util/post-embeds/GifEmbed.tsx:174 497 + msgid "ALT" 498 + msgstr "" 499 + 500 + #: src/view/com/composer/GifAltText.tsx:155 501 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:119 502 + #: src/view/com/composer/videos/SubtitleDialog.tsx:56 503 + #: src/view/com/composer/videos/SubtitleDialog.tsx:102 504 + #: src/view/com/composer/videos/SubtitleDialog.tsx:106 505 + #: src/view/screens/AccessibilitySettings.tsx:84 506 + msgid "Alt text" 507 + msgstr "" 508 + 509 + #: src/view/com/util/post-embeds/GifEmbed.tsx:179 510 + msgid "Alt Text" 511 + msgstr "" 512 + 513 + #: src/view/com/composer/photos/Gallery.tsx:252 514 + msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." 515 + msgstr "" 516 + 517 + #: src/view/com/composer/GifAltText.tsx:180 518 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:140 519 + msgid "Alt text will be truncated. Limit: {0} characters." 520 + msgstr "" 521 + 522 + #: src/view/com/modals/VerifyEmail.tsx:132 523 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:95 524 + msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." 525 + msgstr "" 526 + 527 + #: src/view/com/modals/ChangeEmail.tsx:114 528 + msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." 529 + msgstr "" 530 + 531 + #: src/components/dialogs/VerifyEmailDialog.tsx:77 532 + msgid "An email has been sent! Please enter the confirmation code included in the email below." 533 + msgstr "" 534 + 535 + #: src/components/dialogs/GifSelect.tsx:266 536 + msgid "An error has occurred" 537 + msgstr "" 538 + 539 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:422 540 + msgid "An error occurred" 541 + msgstr "" 542 + 543 + #: src/view/com/composer/state/video.ts:412 544 + msgid "An error occurred while compressing the video." 545 + msgstr "" 546 + 547 + #: src/components/StarterPack/ProfileStarterPacks.tsx:316 548 + msgid "An error occurred while generating your starter pack. Want to try again?" 549 + msgstr "" 550 + 551 + #: src/view/com/util/post-embeds/VideoEmbed.tsx:135 552 + msgid "An error occurred while loading the video. Please try again later." 553 + msgstr "" 554 + 555 + #: src/view/com/util/post-embeds/VideoEmbed.web.tsx:174 556 + msgid "An error occurred while loading the video. Please try again." 557 + msgstr "" 558 + 559 + #: src/components/StarterPack/QrCodeDialog.tsx:71 560 + #: src/components/StarterPack/ShareDialog.tsx:80 561 + msgid "An error occurred while saving the QR code!" 562 + msgstr "" 563 + 564 + #: src/view/com/composer/videos/SelectVideoBtn.tsx:87 565 + msgid "An error occurred while selecting the video" 566 + msgstr "" 567 + 568 + #: src/screens/StarterPack/StarterPackScreen.tsx:336 569 + #: src/screens/StarterPack/StarterPackScreen.tsx:358 570 + msgid "An error occurred while trying to follow all" 571 + msgstr "" 572 + 573 + #: src/view/com/composer/state/video.ts:449 574 + msgid "An error occurred while uploading the video." 575 + msgstr "" 576 + 577 + #: src/lib/moderation/useReportOptions.ts:28 578 + msgid "An issue not included in these options" 579 + msgstr "" 580 + 581 + #: src/components/dms/dialogs/NewChatDialog.tsx:36 582 + msgid "An issue occurred starting the chat" 583 + msgstr "" 584 + 585 + #: src/components/dms/dialogs/ShareViaChatDialog.tsx:47 586 + msgid "An issue occurred while trying to open the chat" 587 + msgstr "" 588 + 589 + #: src/components/hooks/useFollowMethods.ts:35 590 + #: src/components/hooks/useFollowMethods.ts:50 591 + #: src/components/ProfileCard.tsx:326 592 + #: src/components/ProfileCard.tsx:346 593 + #: src/view/com/profile/FollowButton.tsx:36 594 + #: src/view/com/profile/FollowButton.tsx:46 595 + msgid "An issue occurred, please try again." 596 + msgstr "" 597 + 598 + #: src/screens/Onboarding/StepInterests/index.tsx:185 599 + msgid "an unknown error occurred" 600 + msgstr "" 601 + 602 + #: src/components/moderation/ModerationDetailsDialog.tsx:158 603 + #: src/components/moderation/ModerationDetailsDialog.tsx:154 604 + msgid "an unknown labeler" 605 + msgstr "an unknown labeller" 606 + 607 + #: src/components/WhoCanReply.tsx:295 608 + #: src/view/com/notifications/FeedItem.tsx:231 609 + #: src/view/com/notifications/FeedItem.tsx:324 610 + msgid "and" 611 + msgstr "" 612 + 613 + #: src/screens/Onboarding/index.tsx:29 614 + #: src/screens/Onboarding/state.ts:81 615 + msgid "Animals" 616 + msgstr "" 617 + 618 + #: src/view/com/util/post-embeds/GifEmbed.tsx:136 619 + msgid "Animated GIF" 620 + msgstr "" 621 + 622 + #: src/lib/moderation/useReportOptions.ts:33 623 + msgid "Anti-Social Behavior" 624 + msgstr "Anti-Social Behaviour" 625 + 626 + #: src/view/screens/Search/Search.tsx:346 627 + #: src/view/screens/Search/Search.tsx:347 628 + msgid "Any language" 629 + msgstr "" 630 + 631 + #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:51 632 + msgid "Anybody can interact" 633 + msgstr "" 634 + 635 + #: src/view/screens/LanguageSettings.tsx:92 636 + msgid "App Language" 637 + msgstr "" 638 + 639 + #: src/view/screens/AppPasswords.tsx:223 640 + msgid "App password deleted" 641 + msgstr "" 642 + 643 + #: src/view/com/modals/AddAppPasswords.tsx:138 644 + msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." 645 + msgstr "" 646 + 647 + #: src/view/com/modals/AddAppPasswords.tsx:103 648 + msgid "App Password names must be at least 4 characters long." 649 + msgstr "" 650 + 651 + #: src/view/screens/Settings/index.tsx:663 652 + msgid "App password settings" 653 + msgstr "" 654 + 655 + #: src/Navigation.tsx:285 656 + #: src/view/screens/AppPasswords.tsx:188 657 + #: src/view/screens/Settings/index.tsx:672 658 + msgid "App Passwords" 659 + msgstr "" 660 + 661 + #: src/components/moderation/LabelsOnMeDialog.tsx:148 662 + #: src/components/moderation/LabelsOnMeDialog.tsx:151 663 + msgid "Appeal" 664 + msgstr "" 665 + 666 + #: src/components/moderation/LabelsOnMeDialog.tsx:243 667 + msgid "Appeal \"{0}\" label" 668 + msgstr "" 669 + 670 + #: src/components/moderation/LabelsOnMeDialog.tsx:233 671 + #: src/screens/Messages/components/ChatDisabled.tsx:91 672 + msgid "Appeal submitted" 673 + msgstr "" 674 + 675 + #: src/screens/Messages/components/ChatDisabled.tsx:51 676 + #: src/screens/Messages/components/ChatDisabled.tsx:53 677 + #: src/screens/Messages/components/ChatDisabled.tsx:99 678 + #: src/screens/Messages/components/ChatDisabled.tsx:101 679 + msgid "Appeal this decision" 680 + msgstr "" 681 + 682 + #: src/screens/Settings/AppearanceSettings.tsx:89 683 + #: src/view/screens/Settings/index.tsx:484 684 + msgid "Appearance" 685 + msgstr "" 686 + 687 + #: src/view/screens/Settings/index.tsx:475 688 + msgid "Appearance settings" 689 + msgstr "" 690 + 691 + #: src/Navigation.tsx:325 692 + msgid "Appearance Settings" 693 + msgstr "" 694 + 695 + #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 696 + #: src/screens/Home/NoFeedsPinned.tsx:93 697 + msgid "Apply default recommended feeds" 698 + msgstr "" 699 + 700 + #: src/view/screens/AppPasswords.tsx:274 701 + msgid "Are you sure you want to delete the app password \"{name}\"?" 702 + msgstr "" 703 + 704 + #: src/components/dms/MessageMenu.tsx:149 705 + msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." 706 + msgstr "" 707 + 708 + #: src/screens/StarterPack/StarterPackScreen.tsx:621 709 + msgid "Are you sure you want to delete this starter pack?" 710 + msgstr "" 711 + 712 + #: src/screens/Profile/Header/EditProfileDialog.tsx:81 713 + msgid "Are you sure you want to discard your changes?" 714 + msgstr "" 715 + 716 + #: src/components/dms/LeaveConvoPrompt.tsx:48 717 + msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." 718 + msgstr "" 719 + 720 + #: src/view/com/feeds/FeedSourceCard.tsx:313 721 + msgid "Are you sure you want to remove {0} from your feeds?" 722 + msgstr "" 723 + 724 + #: src/components/FeedCard.tsx:313 725 + msgid "Are you sure you want to remove this from your feeds?" 726 + msgstr "" 727 + 728 + #: src/view/com/composer/Composer.tsx:840 729 + msgid "Are you sure you'd like to discard this draft?" 730 + msgstr "" 731 + 732 + #: src/components/dialogs/MutedWords.tsx:433 733 + msgid "Are you sure?" 734 + msgstr "" 735 + 736 + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:60 737 + msgid "Are you writing in <0>{0}</0>?" 738 + msgstr "" 739 + 740 + #: src/screens/Onboarding/index.tsx:23 741 + #: src/screens/Onboarding/state.ts:82 742 + msgid "Art" 743 + msgstr "" 744 + 745 + #: src/view/com/modals/SelfLabel.tsx:124 746 + msgid "Artistic or non-erotic nudity." 747 + msgstr "" 748 + 749 + #: src/screens/Signup/StepHandle.tsx:173 750 + msgid "At least 3 characters" 751 + msgstr "" 752 + 753 + #: src/components/dms/MessagesListHeader.tsx:75 754 + #: src/components/moderation/LabelsOnMeDialog.tsx:290 755 + #: src/components/moderation/LabelsOnMeDialog.tsx:291 756 + #: src/screens/Login/ChooseAccountForm.tsx:90 757 + #: src/screens/Login/ChooseAccountForm.tsx:95 758 + #: src/screens/Login/ForgotPasswordForm.tsx:123 759 + #: src/screens/Login/ForgotPasswordForm.tsx:129 760 + #: src/screens/Login/LoginForm.tsx:282 761 + #: src/screens/Login/LoginForm.tsx:288 762 + #: src/screens/Login/SetNewPasswordForm.tsx:154 763 + #: src/screens/Login/SetNewPasswordForm.tsx:160 764 + #: src/screens/Messages/components/ChatDisabled.tsx:133 765 + #: src/screens/Messages/components/ChatDisabled.tsx:134 766 + #: src/screens/Profile/Header/Shell.tsx:80 767 + #: src/screens/Signup/BackNextButtons.tsx:42 768 + #: src/screens/StarterPack/Wizard/index.tsx:298 769 + #: src/view/com/util/ViewHeader.tsx:87 770 + msgid "Back" 771 + msgstr "" 772 + 773 + #: src/view/screens/Settings/index.tsx:441 774 + msgid "Basics" 775 + msgstr "" 776 + 777 + #: src/components/dialogs/BirthDateSettings.tsx:106 778 + msgid "Birthday" 779 + msgstr "" 780 + 781 + #: src/view/screens/Settings/index.tsx:347 782 + msgid "Birthday:" 783 + msgstr "" 784 + 785 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 786 + #: src/view/com/profile/ProfileMenu.tsx:341 787 + msgid "Block" 788 + msgstr "" 789 + 790 + #: src/components/dms/ConvoMenu.tsx:188 791 + #: src/components/dms/ConvoMenu.tsx:192 792 + msgid "Block account" 793 + msgstr "" 794 + 795 + #: src/view/com/profile/ProfileMenu.tsx:280 796 + #: src/view/com/profile/ProfileMenu.tsx:287 797 + msgid "Block Account" 798 + msgstr "" 799 + 800 + #: src/view/com/profile/ProfileMenu.tsx:324 801 + msgid "Block Account?" 802 + msgstr "" 803 + 804 + #: src/view/screens/ProfileList.tsx:634 805 + msgid "Block accounts" 806 + msgstr "" 807 + 808 + #: src/view/screens/ProfileList.tsx:738 809 + msgid "Block list" 810 + msgstr "" 811 + 812 + #: src/view/screens/ProfileList.tsx:733 813 + msgid "Block these accounts?" 814 + msgstr "" 815 + 816 + #: src/view/com/util/post-embeds/QuoteEmbed.tsx:84 817 + msgid "Blocked" 818 + msgstr "" 819 + 820 + #: src/screens/Moderation/index.tsx:277 821 + msgid "Blocked accounts" 822 + msgstr "" 823 + 824 + #: src/Navigation.tsx:149 825 + #: src/view/screens/ModerationBlockedAccounts.tsx:106 826 + msgid "Blocked Accounts" 827 + msgstr "" 828 + 829 + #: src/view/com/profile/ProfileMenu.tsx:336 830 + msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." 831 + msgstr "" 832 + 833 + #: src/view/screens/ModerationBlockedAccounts.tsx:114 834 + msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." 835 + msgstr "" 836 + 837 + #: src/view/com/post-thread/PostThread.tsx:412 838 + msgid "Blocked post." 839 + msgstr "" 840 + 841 + #: src/screens/Profile/Sections/Labels.tsx:173 842 + msgid "Blocking does not prevent this labeler from placing labels on your account." 843 + msgstr "Blocking does not prevent this labeller from placing labels on your account." 844 + 845 + #: src/view/screens/ProfileList.tsx:735 846 + msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." 847 + msgstr "" 848 + 849 + #: src/view/com/profile/ProfileMenu.tsx:333 850 + msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." 851 + msgstr "" 852 + 853 + #: src/view/com/auth/SplashScreen.web.tsx:172 854 + msgid "Blog" 855 + msgstr "" 856 + 857 + #: src/view/com/auth/server-input/index.tsx:86 858 + #: src/view/com/auth/server-input/index.tsx:88 859 + msgid "Bluesky" 860 + msgstr "" 861 + 862 + #: src/view/com/auth/server-input/index.tsx:151 863 + msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." 864 + msgstr "" 865 + 866 + #: src/components/ProgressGuide/List.tsx:55 867 + msgid "Bluesky is better with friends!" 868 + msgstr "" 869 + 870 + #: src/components/StarterPack/ProfileStarterPacks.tsx:283 871 + msgid "Bluesky will choose a set of recommended accounts from people in your network." 872 + msgstr "" 873 + 874 + #: src/screens/Moderation/index.tsx:568 875 + msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." 876 + msgstr "Bluesky will not show your profile and posts to logged-out users. Other apps may not honour this request. This does not make your account private." 877 + 878 + #: src/lib/moderation/useLabelBehaviorDescription.ts:53 879 + msgid "Blur images" 880 + msgstr "" 881 + 882 + #: src/lib/moderation/useLabelBehaviorDescription.ts:51 883 + msgid "Blur images and filter from feeds" 884 + msgstr "" 885 + 886 + #: src/screens/Onboarding/index.tsx:30 887 + #: src/screens/Onboarding/state.ts:83 888 + msgid "Books" 889 + msgstr "" 890 + 891 + #: src/components/FeedInterstitials.tsx:350 892 + msgid "Browse more accounts on the Explore page" 893 + msgstr "" 894 + 895 + #: src/components/FeedInterstitials.tsx:483 896 + msgid "Browse more feeds on the Explore page" 897 + msgstr "" 898 + 899 + #: src/components/FeedInterstitials.tsx:332 900 + #: src/components/FeedInterstitials.tsx:335 901 + #: src/components/FeedInterstitials.tsx:465 902 + #: src/components/FeedInterstitials.tsx:468 903 + msgid "Browse more suggestions" 904 + msgstr "" 905 + 906 + #: src/components/FeedInterstitials.tsx:358 907 + #: src/components/FeedInterstitials.tsx:492 908 + msgid "Browse more suggestions on the Explore page" 909 + msgstr "" 910 + 911 + #: src/screens/Home/NoFeedsPinned.tsx:103 912 + #: src/screens/Home/NoFeedsPinned.tsx:109 913 + msgid "Browse other feeds" 914 + msgstr "" 915 + 916 + #: src/view/com/auth/SplashScreen.web.tsx:167 917 + msgid "Business" 918 + msgstr "" 919 + 920 + #: src/view/com/profile/ProfileSubpageHeader.tsx:160 921 + msgid "by —" 922 + msgstr "" 923 + 924 + #: src/components/LabelingServiceCard/index.tsx:62 925 + msgid "By {0}" 926 + msgstr "" 927 + 928 + #: src/view/com/profile/ProfileSubpageHeader.tsx:164 929 + msgid "by <0/>" 930 + msgstr "" 931 + 932 + #: src/screens/Signup/StepInfo/Policies.tsx:81 933 + msgid "By creating an account you agree to the <0>Privacy Policy</0>." 934 + msgstr "" 935 + 936 + #: src/screens/Signup/StepInfo/Policies.tsx:48 937 + msgid "By creating an account you agree to the <0>Terms of Service</0> and <1>Privacy Policy</1>." 938 + msgstr "" 939 + 940 + #: src/screens/Signup/StepInfo/Policies.tsx:68 941 + msgid "By creating an account you agree to the <0>Terms of Service</0>." 942 + msgstr "" 943 + 944 + #: src/view/com/profile/ProfileSubpageHeader.tsx:162 945 + msgid "by you" 946 + msgstr "" 947 + 948 + #: src/view/com/composer/photos/OpenCameraBtn.tsx:72 949 + msgid "Camera" 950 + msgstr "" 951 + 952 + #: src/view/com/modals/AddAppPasswords.tsx:180 953 + msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." 954 + msgstr "" 955 + 956 + #: src/components/Menu/index.tsx:235 957 + #: src/components/Prompt.tsx:129 958 + #: src/components/Prompt.tsx:131 959 + #: src/components/TagMenu/index.tsx:281 960 + #: src/screens/Deactivated.tsx:161 961 + #: src/view/com/composer/Composer.tsx:540 962 + #: src/view/com/composer/Composer.tsx:555 963 + #: src/view/com/modals/ChangeEmail.tsx:213 964 + #: src/view/com/modals/ChangeEmail.tsx:215 965 + #: src/view/com/modals/ChangeHandle.tsx:141 966 + #: src/view/com/modals/ChangePassword.tsx:268 967 + #: src/view/com/modals/ChangePassword.tsx:271 968 + #: src/view/com/modals/CreateOrEditList.tsx:335 969 + #: src/view/com/modals/CropImage.web.tsx:97 970 + #: src/view/com/modals/EditProfile.tsx:244 971 + #: src/view/com/modals/InAppBrowserConsent.tsx:75 972 + #: src/view/com/modals/InAppBrowserConsent.tsx:77 973 + #: src/view/com/modals/LinkWarning.tsx:105 974 + #: src/view/com/modals/LinkWarning.tsx:107 975 + #: src/view/com/modals/VerifyEmail.tsx:255 976 + #: src/view/com/modals/VerifyEmail.tsx:261 977 + #: src/view/com/util/post-ctrls/RepostButton.tsx:164 978 + #: src/view/screens/Search/Search.tsx:905 979 + msgid "Cancel" 980 + msgstr "" 981 + 982 + #: src/view/com/modals/CreateOrEditList.tsx:340 983 + #: src/view/com/modals/DeleteAccount.tsx:174 984 + #: src/view/com/modals/DeleteAccount.tsx:296 985 + msgctxt "action" 986 + msgid "Cancel" 987 + msgstr "" 988 + 989 + #: src/view/com/modals/DeleteAccount.tsx:170 990 + #: src/view/com/modals/DeleteAccount.tsx:292 991 + msgid "Cancel account deletion" 992 + msgstr "" 993 + 994 + #: src/view/com/modals/ChangeHandle.tsx:137 995 + msgid "Cancel change handle" 996 + msgstr "" 997 + 998 + #: src/view/com/modals/CropImage.web.tsx:94 999 + msgid "Cancel image crop" 1000 + msgstr "" 1001 + 1002 + #: src/view/com/util/post-ctrls/RepostButton.tsx:159 1003 + msgid "Cancel quote post" 1004 + msgstr "" 1005 + 1006 + #: src/screens/Deactivated.tsx:155 1007 + msgid "Cancel reactivation and log out" 1008 + msgstr "" 1009 + 1010 + #: src/view/com/modals/ListAddRemoveUsers.tsx:88 1011 + #: src/view/screens/Search/Search.tsx:897 1012 + msgid "Cancel search" 1013 + msgstr "" 1014 + 1015 + #: src/view/com/modals/LinkWarning.tsx:106 1016 + msgid "Cancels opening the linked website" 1017 + msgstr "" 1018 + 1019 + #: src/state/shell/composer/index.tsx:95 1020 + #: src/view/com/util/post-ctrls/PostCtrls.tsx:114 1021 + #: src/view/com/util/post-ctrls/PostCtrls.tsx:155 1022 + #: src/view/com/util/post-ctrls/PostCtrls.tsx:191 1023 + msgid "Cannot interact with a blocked user" 1024 + msgstr "" 1025 + 1026 + #: src/view/com/composer/videos/SubtitleDialog.tsx:133 1027 + msgid "Captions (.vtt)" 1028 + msgstr "Subtitles (.vtt)" 1029 + 1030 + #: src/view/com/composer/videos/SubtitleDialog.tsx:56 1031 + msgid "Captions & alt text" 1032 + msgstr "Subtitles & alt text" 1033 + 1034 + #: src/view/com/modals/VerifyEmail.tsx:160 1035 + msgid "Change" 1036 + msgstr "" 1037 + 1038 + #: src/view/screens/Settings/index.tsx:341 1039 + msgctxt "action" 1040 + msgid "Change" 1041 + msgstr "" 1042 + 1043 + #: src/components/dialogs/VerifyEmailDialog.tsx:147 1044 + msgid "Change email address" 1045 + msgstr "" 1046 + 1047 + #: src/view/screens/Settings/index.tsx:684 1048 + msgid "Change handle" 1049 + msgstr "" 1050 + 1051 + #: src/view/com/modals/ChangeHandle.tsx:149 1052 + #: src/view/screens/Settings/index.tsx:695 1053 + msgid "Change Handle" 1054 + msgstr "" 1055 + 1056 + #: src/view/com/modals/VerifyEmail.tsx:155 1057 + msgid "Change my email" 1058 + msgstr "" 1059 + 1060 + #: src/view/screens/Settings/index.tsx:729 1061 + msgid "Change password" 1062 + msgstr "" 1063 + 1064 + #: src/view/com/modals/ChangePassword.tsx:142 1065 + #: src/view/screens/Settings/index.tsx:740 1066 + msgid "Change Password" 1067 + msgstr "" 1068 + 1069 + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:73 1070 + msgid "Change post language to {0}" 1071 + msgstr "" 1072 + 1073 + #: src/view/com/modals/ChangeEmail.tsx:104 1074 + msgid "Change Your Email" 1075 + msgstr "" 1076 + 1077 + #: src/Navigation.tsx:337 1078 + #: src/view/shell/bottom-bar/BottomBar.tsx:200 1079 + #: src/view/shell/desktop/LeftNav.tsx:329 1080 + msgid "Chat" 1081 + msgstr "" 1082 + 1083 + #: src/components/dms/ConvoMenu.tsx:82 1084 + msgid "Chat muted" 1085 + msgstr "" 1086 + 1087 + #: src/components/dms/ConvoMenu.tsx:112 1088 + #: src/components/dms/MessageMenu.tsx:81 1089 + #: src/Navigation.tsx:342 1090 + #: src/screens/Messages/ChatList.tsx:87 1091 + #: src/view/screens/Settings/index.tsx:604 1092 + msgid "Chat settings" 1093 + msgstr "" 1094 + 1095 + #: src/screens/Messages/Settings.tsx:59 1096 + #: src/view/screens/Settings/index.tsx:613 1097 + msgid "Chat Settings" 1098 + msgstr "" 1099 + 1100 + #: src/components/dms/ConvoMenu.tsx:84 1101 + msgid "Chat unmuted" 1102 + msgstr "" 1103 + 1104 + #: src/screens/SignupQueued.tsx:78 1105 + #: src/screens/SignupQueued.tsx:82 1106 + msgid "Check my status" 1107 + msgstr "" 1108 + 1109 + #: src/screens/Login/LoginForm.tsx:275 1110 + msgid "Check your email for a login code and enter it here." 1111 + msgstr "" 1112 + 1113 + #: src/view/com/modals/DeleteAccount.tsx:231 1114 + msgid "Check your inbox for an email with the confirmation code to enter below:" 1115 + msgstr "" 1116 + 1117 + #: src/screens/StarterPack/Wizard/index.tsx:190 1118 + msgid "Choose Feeds" 1119 + msgstr "" 1120 + 1121 + #: src/components/StarterPack/ProfileStarterPacks.tsx:291 1122 + msgid "Choose for me" 1123 + msgstr "" 1124 + 1125 + #: src/screens/StarterPack/Wizard/index.tsx:186 1126 + msgid "Choose People" 1127 + msgstr "" 1128 + 1129 + #: src/view/com/composer/labels/LabelsBtn.tsx:123 1130 + msgid "Choose self-labels that are applicable for the media you are posting. If none are selected, this post is suitable for all audiences." 1131 + msgstr "" 1132 + 1133 + #: src/view/com/auth/server-input/index.tsx:76 1134 + msgid "Choose Service" 1135 + msgstr "" 1136 + 1137 + #: src/screens/Onboarding/StepFinished.tsx:271 1138 + msgid "Choose the algorithms that power your custom feeds." 1139 + msgstr "" 1140 + 1141 + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 1142 + msgid "Choose this color as your avatar" 1143 + msgstr "" 1144 + 1145 + #: src/screens/Signup/StepInfo/index.tsx:201 1146 + msgid "Choose your password" 1147 + msgstr "" 1148 + 1149 + #: src/view/screens/Settings/index.tsx:876 1150 + msgid "Clear all storage data" 1151 + msgstr "" 1152 + 1153 + #: src/view/screens/Settings/index.tsx:879 1154 + msgid "Clear all storage data (restart after this)" 1155 + msgstr "" 1156 + 1157 + #: src/components/forms/SearchInput.tsx:70 1158 + msgid "Clear search query" 1159 + msgstr "" 1160 + 1161 + #: src/view/screens/Settings/index.tsx:877 1162 + msgid "Clears all storage data" 1163 + msgstr "" 1164 + 1165 + #: src/view/screens/Support.tsx:40 1166 + msgid "click here" 1167 + msgstr "" 1168 + 1169 + #: src/view/com/modals/DeleteAccount.tsx:208 1170 + msgid "Click here for more information on deactivating your account" 1171 + msgstr "" 1172 + 1173 + #: src/view/com/modals/DeleteAccount.tsx:216 1174 + msgid "Click here for more information." 1175 + msgstr "" 1176 + 1177 + #: src/components/TagMenu/index.web.tsx:152 1178 + msgid "Click here to open tag menu for {tag}" 1179 + msgstr "" 1180 + 1181 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:304 1182 + msgid "Click to disable quote posts of this post." 1183 + msgstr "" 1184 + 1185 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:305 1186 + msgid "Click to enable quote posts of this post." 1187 + msgstr "" 1188 + 1189 + #: src/components/dms/MessageItem.tsx:240 1190 + msgid "Click to retry failed message" 1191 + msgstr "" 1192 + 1193 + #: src/screens/Onboarding/index.tsx:32 1194 + msgid "Climate" 1195 + msgstr "" 1196 + 1197 + #: src/components/dms/ChatEmptyPill.tsx:39 1198 + msgid "Clip 🐴 clop 🐴" 1199 + msgstr "" 1200 + 1201 + #: src/components/dialogs/GifSelect.tsx:282 1202 + #: src/components/dialogs/VerifyEmailDialog.tsx:246 1203 + #: src/components/dms/dialogs/SearchablePeopleList.tsx:263 1204 + #: src/components/NewskieDialog.tsx:146 1205 + #: src/components/NewskieDialog.tsx:153 1206 + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 1207 + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 1208 + #: src/view/com/modals/ChangePassword.tsx:268 1209 + #: src/view/com/modals/ChangePassword.tsx:271 1210 + #: src/view/com/util/post-embeds/GifEmbed.tsx:185 1211 + msgid "Close" 1212 + msgstr "" 1213 + 1214 + #: src/components/Dialog/index.web.tsx:109 1215 + #: src/components/Dialog/index.web.tsx:251 1216 + msgid "Close active dialog" 1217 + msgstr "" 1218 + 1219 + #: src/screens/Login/PasswordUpdatedForm.tsx:32 1220 + msgid "Close alert" 1221 + msgstr "" 1222 + 1223 + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 1224 + msgid "Close bottom drawer" 1225 + msgstr "" 1226 + 1227 + #: src/components/dialogs/GifSelect.tsx:276 1228 + msgid "Close dialog" 1229 + msgstr "" 1230 + 1231 + #: src/components/dialogs/GifSelect.tsx:169 1232 + msgid "Close GIF dialog" 1233 + msgstr "" 1234 + 1235 + #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:36 1236 + msgid "Close image" 1237 + msgstr "" 1238 + 1239 + #: src/view/com/lightbox/Lightbox.web.tsx:129 1240 + msgid "Close image viewer" 1241 + msgstr "" 1242 + 1243 + #: src/view/shell/index.web.tsx:65 1244 + msgid "Close navigation footer" 1245 + msgstr "" 1246 + 1247 + #: src/components/Menu/index.tsx:229 1248 + #: src/components/TagMenu/index.tsx:275 1249 + msgid "Close this dialog" 1250 + msgstr "" 1251 + 1252 + #: src/view/shell/index.web.tsx:66 1253 + msgid "Closes bottom navigation bar" 1254 + msgstr "" 1255 + 1256 + #: src/screens/Login/PasswordUpdatedForm.tsx:33 1257 + msgid "Closes password update alert" 1258 + msgstr "" 1259 + 1260 + #: src/view/com/composer/Composer.tsx:552 1261 + msgid "Closes post composer and discards post draft" 1262 + msgstr "" 1263 + 1264 + #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:37 1265 + msgid "Closes viewer for header image" 1266 + msgstr "" 1267 + 1268 + #: src/view/com/notifications/FeedItem.tsx:265 1269 + msgid "Collapse list of users" 1270 + msgstr "" 1271 + 1272 + #: src/view/com/notifications/FeedItem.tsx:470 1273 + msgid "Collapses list of users for a given notification" 1274 + msgstr "" 1275 + 1276 + #: src/screens/Settings/AppearanceSettings.tsx:97 1277 + msgid "Color mode" 1278 + msgstr "Colour mode" 1279 + 1280 + #: src/screens/Onboarding/index.tsx:38 1281 + #: src/screens/Onboarding/state.ts:84 1282 + msgid "Comedy" 1283 + msgstr "" 1284 + 1285 + #: src/screens/Onboarding/index.tsx:24 1286 + #: src/screens/Onboarding/state.ts:85 1287 + msgid "Comics" 1288 + msgstr "" 1289 + 1290 + #: src/Navigation.tsx:275 1291 + #: src/view/screens/CommunityGuidelines.tsx:32 1292 + msgid "Community Guidelines" 1293 + msgstr "" 1294 + 1295 + #: src/screens/Onboarding/StepFinished.tsx:284 1296 + msgid "Complete onboarding and start using your account" 1297 + msgstr "" 1298 + 1299 + #: src/screens/Signup/index.tsx:144 1300 + msgid "Complete the challenge" 1301 + msgstr "" 1302 + 1303 + #: src/view/com/composer/Composer.tsx:664 1304 + msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" 1305 + msgstr "" 1306 + 1307 + #: src/view/com/post-thread/PostThreadComposePrompt.tsx:47 1308 + msgid "Compose reply" 1309 + msgstr "" 1310 + 1311 + #: src/view/com/composer/Composer.tsx:1167 1312 + msgid "Compressing video..." 1313 + msgstr "" 1314 + 1315 + #: src/components/moderation/LabelPreference.tsx:81 1316 + msgid "Configure content filtering setting for category: {name}" 1317 + msgstr "" 1318 + 1319 + #: src/components/moderation/LabelPreference.tsx:243 1320 + msgid "Configured in <0>moderation settings</0>." 1321 + msgstr "" 1322 + 1323 + #: src/components/dialogs/VerifyEmailDialog.tsx:210 1324 + #: src/components/dialogs/VerifyEmailDialog.tsx:217 1325 + #: src/components/dialogs/VerifyEmailDialog.tsx:240 1326 + #: src/components/Prompt.tsx:172 1327 + #: src/components/Prompt.tsx:175 1328 + #: src/view/com/modals/SelfLabel.tsx:155 1329 + #: src/view/com/modals/VerifyEmail.tsx:239 1330 + #: src/view/com/modals/VerifyEmail.tsx:241 1331 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:179 1332 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:182 1333 + msgid "Confirm" 1334 + msgstr "" 1335 + 1336 + #: src/view/com/modals/ChangeEmail.tsx:188 1337 + #: src/view/com/modals/ChangeEmail.tsx:190 1338 + msgid "Confirm Change" 1339 + msgstr "" 1340 + 1341 + #: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:35 1342 + msgid "Confirm content language settings" 1343 + msgstr "" 1344 + 1345 + #: src/view/com/modals/DeleteAccount.tsx:282 1346 + msgid "Confirm delete account" 1347 + msgstr "" 1348 + 1349 + #: src/screens/Moderation/index.tsx:311 1350 + msgid "Confirm your age:" 1351 + msgstr "" 1352 + 1353 + #: src/screens/Moderation/index.tsx:302 1354 + msgid "Confirm your birthdate" 1355 + msgstr "" 1356 + 1357 + #: src/components/dialogs/VerifyEmailDialog.tsx:171 1358 + #: src/screens/Login/LoginForm.tsx:256 1359 + #: src/view/com/modals/ChangeEmail.tsx:152 1360 + #: src/view/com/modals/DeleteAccount.tsx:238 1361 + #: src/view/com/modals/DeleteAccount.tsx:244 1362 + #: src/view/com/modals/VerifyEmail.tsx:173 1363 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:142 1364 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:148 1365 + msgid "Confirmation code" 1366 + msgstr "" 1367 + 1368 + #: src/components/dialogs/VerifyEmailDialog.tsx:167 1369 + msgid "Confirmation Code" 1370 + msgstr "" 1371 + 1372 + #: src/screens/Login/LoginForm.tsx:309 1373 + msgid "Connecting..." 1374 + msgstr "" 1375 + 1376 + #: src/screens/Signup/index.tsx:175 1377 + #: src/screens/Signup/index.tsx:178 1378 + msgid "Contact support" 1379 + msgstr "" 1380 + 1381 + #: src/lib/moderation/useGlobalLabelStrings.ts:18 1382 + msgid "Content Blocked" 1383 + msgstr "" 1384 + 1385 + #: src/screens/Moderation/index.tsx:295 1386 + msgid "Content filters" 1387 + msgstr "" 1388 + 1389 + #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:75 1390 + #: src/view/screens/LanguageSettings.tsx:278 1391 + msgid "Content Languages" 1392 + msgstr "" 1393 + 1394 + #: src/components/moderation/ModerationDetailsDialog.tsx:81 1395 + #: src/lib/moderation/useModerationCauseDescription.ts:80 1396 + msgid "Content Not Available" 1397 + msgstr "" 1398 + 1399 + #: src/components/moderation/ModerationDetailsDialog.tsx:49 1400 + #: src/components/moderation/ScreenHider.tsx:93 1401 + #: src/lib/moderation/useGlobalLabelStrings.ts:22 1402 + #: src/lib/moderation/useModerationCauseDescription.ts:43 1403 + msgid "Content Warning" 1404 + msgstr "" 1405 + 1406 + #: src/view/com/composer/labels/LabelsBtn.tsx:32 1407 + msgid "Content warnings" 1408 + msgstr "" 1409 + 1410 + #: src/components/Menu/index.web.tsx:83 1411 + msgid "Context menu backdrop, click to close the menu." 1412 + msgstr "" 1413 + 1414 + #: src/screens/Onboarding/StepInterests/index.tsx:244 1415 + #: src/screens/Onboarding/StepProfile/index.tsx:278 1416 + msgid "Continue" 1417 + msgstr "" 1418 + 1419 + #: src/components/AccountList.tsx:113 1420 + msgid "Continue as {0} (currently signed in)" 1421 + msgstr "" 1422 + 1423 + #: src/view/com/post-thread/PostThreadLoadMore.tsx:52 1424 + msgid "Continue thread..." 1425 + msgstr "" 1426 + 1427 + #: src/screens/Onboarding/StepInterests/index.tsx:241 1428 + #: src/screens/Onboarding/StepProfile/index.tsx:275 1429 + #: src/screens/Signup/BackNextButtons.tsx:61 1430 + msgid "Continue to next step" 1431 + msgstr "" 1432 + 1433 + #: src/screens/Messages/components/ChatListItem.tsx:164 1434 + msgid "Conversation deleted" 1435 + msgstr "" 1436 + 1437 + #: src/screens/Onboarding/index.tsx:41 1438 + msgid "Cooking" 1439 + msgstr "" 1440 + 1441 + #: src/view/com/modals/AddAppPasswords.tsx:221 1442 + #: src/view/com/modals/InviteCodes.tsx:183 1443 + msgid "Copied" 1444 + msgstr "" 1445 + 1446 + #: src/view/screens/Settings/index.tsx:233 1447 + msgid "Copied build version to clipboard" 1448 + msgstr "" 1449 + 1450 + #: src/components/dms/MessageMenu.tsx:57 1451 + #: src/view/com/modals/AddAppPasswords.tsx:80 1452 + #: src/view/com/modals/ChangeHandle.tsx:313 1453 + #: src/view/com/modals/InviteCodes.tsx:153 1454 + #: src/view/com/util/forms/PostDropdownBtn.tsx:240 1455 + #: src/view/com/util/post-ctrls/PostCtrls.tsx:392 1456 + msgid "Copied to clipboard" 1457 + msgstr "" 1458 + 1459 + #: src/components/dialogs/Embed.tsx:136 1460 + msgid "Copied!" 1461 + msgstr "" 1462 + 1463 + #: src/view/com/modals/AddAppPasswords.tsx:215 1464 + msgid "Copies app password" 1465 + msgstr "" 1466 + 1467 + #: src/components/StarterPack/QrCodeDialog.tsx:175 1468 + #: src/view/com/modals/AddAppPasswords.tsx:214 1469 + msgid "Copy" 1470 + msgstr "" 1471 + 1472 + #: src/view/com/modals/ChangeHandle.tsx:467 1473 + msgid "Copy {0}" 1474 + msgstr "" 1475 + 1476 + #: src/components/dialogs/Embed.tsx:122 1477 + #: src/components/dialogs/Embed.tsx:141 1478 + msgid "Copy code" 1479 + msgstr "" 1480 + 1481 + #: src/components/StarterPack/ShareDialog.tsx:124 1482 + msgid "Copy link" 1483 + msgstr "" 1484 + 1485 + #: src/components/StarterPack/ShareDialog.tsx:131 1486 + msgid "Copy Link" 1487 + msgstr "" 1488 + 1489 + #: src/view/screens/ProfileList.tsx:478 1490 + msgid "Copy link to list" 1491 + msgstr "" 1492 + 1493 + #: src/view/com/util/forms/PostDropdownBtn.tsx:452 1494 + #: src/view/com/util/forms/PostDropdownBtn.tsx:461 1495 + msgid "Copy link to post" 1496 + msgstr "" 1497 + 1498 + #: src/components/dms/MessageMenu.tsx:110 1499 + #: src/components/dms/MessageMenu.tsx:112 1500 + msgid "Copy message text" 1501 + msgstr "" 1502 + 1503 + #: src/view/com/util/forms/PostDropdownBtn.tsx:430 1504 + #: src/view/com/util/forms/PostDropdownBtn.tsx:432 1505 + msgid "Copy post text" 1506 + msgstr "" 1507 + 1508 + #: src/components/StarterPack/QrCodeDialog.tsx:169 1509 + msgid "Copy QR code" 1510 + msgstr "" 1511 + 1512 + #: src/Navigation.tsx:280 1513 + #: src/view/screens/CopyrightPolicy.tsx:29 1514 + msgid "Copyright Policy" 1515 + msgstr "" 1516 + 1517 + #: src/components/dms/LeaveConvoPrompt.tsx:39 1518 + msgid "Could not leave chat" 1519 + msgstr "" 1520 + 1521 + #: src/view/screens/ProfileFeed.tsx:102 1522 + msgid "Could not load feed" 1523 + msgstr "" 1524 + 1525 + #: src/view/screens/ProfileList.tsx:1011 1526 + msgid "Could not load list" 1527 + msgstr "" 1528 + 1529 + #: src/components/dms/ConvoMenu.tsx:88 1530 + msgid "Could not mute chat" 1531 + msgstr "" 1532 + 1533 + #: src/view/com/composer/videos/VideoPreview.web.tsx:56 1534 + msgid "Could not process your video" 1535 + msgstr "" 1536 + 1537 + #: src/components/StarterPack/ProfileStarterPacks.tsx:273 1538 + msgid "Create" 1539 + msgstr "" 1540 + 1541 + #: src/view/screens/Settings/index.tsx:402 1542 + msgid "Create a new Bluesky account" 1543 + msgstr "" 1544 + 1545 + #: src/components/StarterPack/QrCodeDialog.tsx:153 1546 + msgid "Create a QR code for a starter pack" 1547 + msgstr "" 1548 + 1549 + #: src/components/StarterPack/ProfileStarterPacks.tsx:166 1550 + #: src/components/StarterPack/ProfileStarterPacks.tsx:260 1551 + #: src/Navigation.tsx:367 1552 + msgid "Create a starter pack" 1553 + msgstr "" 1554 + 1555 + #: src/components/StarterPack/ProfileStarterPacks.tsx:247 1556 + msgid "Create a starter pack for me" 1557 + msgstr "" 1558 + 1559 + #: src/view/com/auth/SplashScreen.tsx:56 1560 + #: src/view/com/auth/SplashScreen.web.tsx:116 1561 + msgid "Create account" 1562 + msgstr "" 1563 + 1564 + #: src/screens/Signup/index.tsx:93 1565 + msgid "Create Account" 1566 + msgstr "" 1567 + 1568 + #: src/components/dialogs/Signin.tsx:86 1569 + #: src/components/dialogs/Signin.tsx:88 1570 + msgid "Create an account" 1571 + msgstr "" 1572 + 1573 + #: src/screens/Onboarding/StepProfile/index.tsx:292 1574 + msgid "Create an avatar instead" 1575 + msgstr "" 1576 + 1577 + #: src/components/StarterPack/ProfileStarterPacks.tsx:173 1578 + msgid "Create another" 1579 + msgstr "" 1580 + 1581 + #: src/view/com/modals/AddAppPasswords.tsx:243 1582 + msgid "Create App Password" 1583 + msgstr "" 1584 + 1585 + #: src/view/com/auth/SplashScreen.tsx:48 1586 + #: src/view/com/auth/SplashScreen.web.tsx:108 1587 + msgid "Create new account" 1588 + msgstr "" 1589 + 1590 + #: src/components/ReportDialog/SelectReportOptionView.tsx:101 1591 + msgid "Create report for {0}" 1592 + msgstr "" 1593 + 1594 + #: src/view/screens/AppPasswords.tsx:243 1595 + msgid "Created {0}" 1596 + msgstr "" 1597 + 1598 + #: src/screens/Onboarding/index.tsx:26 1599 + #: src/screens/Onboarding/state.ts:86 1600 + msgid "Culture" 1601 + msgstr "" 1602 + 1603 + #: src/view/com/auth/server-input/index.tsx:94 1604 + #: src/view/com/auth/server-input/index.tsx:96 1605 + msgid "Custom" 1606 + msgstr "" 1607 + 1608 + #: src/view/com/modals/ChangeHandle.tsx:375 1609 + msgid "Custom domain" 1610 + msgstr "" 1611 + 1612 + #: src/view/screens/Feeds.tsx:760 1613 + #: src/view/screens/Search/Explore.tsx:391 1614 + msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." 1615 + msgstr "" 1616 + 1617 + #: src/view/screens/PreferencesExternalEmbeds.tsx:54 1618 + msgid "Customize media from external sites." 1619 + msgstr "Customise media from external sites." 1620 + 1621 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:289 1622 + msgid "Customize who can interact with this post." 1623 + msgstr "Customise who can interact with this post." 1624 + 1625 + #: src/screens/Settings/AppearanceSettings.tsx:109 1626 + #: src/screens/Settings/AppearanceSettings.tsx:130 1627 + msgid "Dark" 1628 + msgstr "" 1629 + 1630 + #: src/view/screens/Debug.tsx:63 1631 + msgid "Dark mode" 1632 + msgstr "" 1633 + 1634 + #: src/screens/Settings/AppearanceSettings.tsx:122 1635 + msgid "Dark theme" 1636 + msgstr "" 1637 + 1638 + #: src/screens/Signup/StepInfo/index.tsx:222 1639 + msgid "Date of birth" 1640 + msgstr "" 1641 + 1642 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 1643 + #: src/view/screens/Settings/index.tsx:772 1644 + msgid "Deactivate account" 1645 + msgstr "" 1646 + 1647 + #: src/view/screens/Settings/index.tsx:784 1648 + msgid "Deactivate my account" 1649 + msgstr "" 1650 + 1651 + #: src/view/screens/Settings/index.tsx:839 1652 + msgid "Debug Moderation" 1653 + msgstr "" 1654 + 1655 + #: src/view/screens/Debug.tsx:83 1656 + msgid "Debug panel" 1657 + msgstr "" 1658 + 1659 + #: src/components/dialogs/nuxs/NeueTypography.tsx:99 1660 + #: src/screens/Settings/AppearanceSettings.tsx:169 1661 + msgid "Default" 1662 + msgstr "" 1663 + 1664 + #: src/components/dms/MessageMenu.tsx:151 1665 + #: src/screens/StarterPack/StarterPackScreen.tsx:573 1666 + #: src/screens/StarterPack/StarterPackScreen.tsx:652 1667 + #: src/screens/StarterPack/StarterPackScreen.tsx:732 1668 + #: src/view/com/util/forms/PostDropdownBtn.tsx:673 1669 + #: src/view/screens/AppPasswords.tsx:277 1670 + #: src/view/screens/ProfileList.tsx:717 1671 + msgid "Delete" 1672 + msgstr "" 1673 + 1674 + #: src/view/screens/Settings/index.tsx:794 1675 + msgid "Delete account" 1676 + msgstr "" 1677 + 1678 + #: src/view/com/modals/DeleteAccount.tsx:105 1679 + msgid "Delete Account <0>\"</0><1>{0}</1><2>\"</2>" 1680 + msgstr "" 1681 + 1682 + #: src/view/screens/AppPasswords.tsx:236 1683 + msgid "Delete app password" 1684 + msgstr "" 1685 + 1686 + #: src/view/screens/AppPasswords.tsx:272 1687 + msgid "Delete app password?" 1688 + msgstr "" 1689 + 1690 + #: src/view/screens/Settings/index.tsx:856 1691 + #: src/view/screens/Settings/index.tsx:859 1692 + msgid "Delete chat declaration record" 1693 + msgstr "" 1694 + 1695 + #: src/components/dms/MessageMenu.tsx:124 1696 + msgid "Delete for me" 1697 + msgstr "" 1698 + 1699 + #: src/view/screens/ProfileList.tsx:521 1700 + msgid "Delete List" 1701 + msgstr "" 1702 + 1703 + #: src/components/dms/MessageMenu.tsx:147 1704 + msgid "Delete message" 1705 + msgstr "" 1706 + 1707 + #: src/components/dms/MessageMenu.tsx:122 1708 + msgid "Delete message for me" 1709 + msgstr "" 1710 + 1711 + #: src/view/com/modals/DeleteAccount.tsx:285 1712 + msgid "Delete my account" 1713 + msgstr "" 1714 + 1715 + #: src/view/screens/Settings/index.tsx:806 1716 + msgid "Delete My Account…" 1717 + msgstr "" 1718 + 1719 + #: src/view/com/util/forms/PostDropdownBtn.tsx:653 1720 + #: src/view/com/util/forms/PostDropdownBtn.tsx:655 1721 + msgid "Delete post" 1722 + msgstr "" 1723 + 1724 + #: src/screens/StarterPack/StarterPackScreen.tsx:567 1725 + #: src/screens/StarterPack/StarterPackScreen.tsx:723 1726 + msgid "Delete starter pack" 1727 + msgstr "" 1728 + 1729 + #: src/screens/StarterPack/StarterPackScreen.tsx:618 1730 + msgid "Delete starter pack?" 1731 + msgstr "" 1732 + 1733 + #: src/view/screens/ProfileList.tsx:712 1734 + msgid "Delete this list?" 1735 + msgstr "" 1736 + 1737 + #: src/view/com/util/forms/PostDropdownBtn.tsx:668 1738 + msgid "Delete this post?" 1739 + msgstr "" 1740 + 1741 + #: src/view/com/util/post-embeds/QuoteEmbed.tsx:94 1742 + msgid "Deleted" 1743 + msgstr "" 1744 + 1745 + #: src/view/com/post-thread/PostThread.tsx:398 1746 + msgid "Deleted post." 1747 + msgstr "" 1748 + 1749 + #: src/view/screens/Settings/index.tsx:857 1750 + msgid "Deletes the chat declaration record" 1751 + msgstr "" 1752 + 1753 + #: src/view/com/modals/CreateOrEditList.tsx:280 1754 + #: src/view/com/modals/CreateOrEditList.tsx:301 1755 + #: src/view/com/modals/EditProfile.tsx:193 1756 + #: src/view/com/modals/EditProfile.tsx:205 1757 + msgid "Description" 1758 + msgstr "" 1759 + 1760 + #: src/screens/Profile/Header/EditProfileDialog.tsx:359 1761 + msgid "Description is too long" 1762 + msgstr "" 1763 + 1764 + #: src/screens/Profile/Header/EditProfileDialog.tsx:360 1765 + msgid "Description is too long. The maximum number of characters is {DESCRIPTION_MAX_GRAPHEMES}." 1766 + msgstr "" 1767 + 1768 + #: src/view/com/composer/GifAltText.tsx:151 1769 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:115 1770 + msgid "Descriptive alt text" 1771 + msgstr "" 1772 + 1773 + #: src/view/com/util/forms/PostDropdownBtn.tsx:586 1774 + #: src/view/com/util/forms/PostDropdownBtn.tsx:596 1775 + msgid "Detach quote" 1776 + msgstr "" 1777 + 1778 + #: src/view/com/util/forms/PostDropdownBtn.tsx:731 1779 + msgid "Detach quote post?" 1780 + msgstr "" 1781 + 1782 + #: src/components/WhoCanReply.tsx:175 1783 + msgid "Dialog: adjust who can interact with this post" 1784 + msgstr "" 1785 + 1786 + #: src/view/com/composer/Composer.tsx:367 1787 + msgid "Did you want to say anything?" 1788 + msgstr "" 1789 + 1790 + #: src/screens/Settings/AppearanceSettings.tsx:126 1791 + msgid "Dim" 1792 + msgstr "" 1793 + 1794 + #: src/view/screens/AccessibilitySettings.tsx:108 1795 + msgid "Disable autoplay for videos and GIFs" 1796 + msgstr "" 1797 + 1798 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:89 1799 + msgid "Disable Email 2FA" 1800 + msgstr "" 1801 + 1802 + #: src/view/screens/AccessibilitySettings.tsx:122 1803 + msgid "Disable haptic feedback" 1804 + msgstr "" 1805 + 1806 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:388 1807 + msgid "Disable subtitles" 1808 + msgstr "" 1809 + 1810 + #: src/lib/moderation/useLabelBehaviorDescription.ts:32 1811 + #: src/lib/moderation/useLabelBehaviorDescription.ts:42 1812 + #: src/lib/moderation/useLabelBehaviorDescription.ts:68 1813 + #: src/screens/Messages/Settings.tsx:140 1814 + #: src/screens/Messages/Settings.tsx:143 1815 + #: src/screens/Moderation/index.tsx:353 1816 + msgid "Disabled" 1817 + msgstr "" 1818 + 1819 + #: src/view/com/composer/Composer.tsx:842 1820 + msgid "Discard" 1821 + msgstr "" 1822 + 1823 + #: src/screens/Profile/Header/EditProfileDialog.tsx:80 1824 + msgid "Discard changes?" 1825 + msgstr "" 1826 + 1827 + #: src/view/com/composer/Composer.tsx:839 1828 + msgid "Discard draft?" 1829 + msgstr "" 1830 + 1831 + #: src/screens/Moderation/index.tsx:553 1832 + #: src/screens/Moderation/index.tsx:557 1833 + msgid "Discourage apps from showing my account to logged-out users" 1834 + msgstr "" 1835 + 1836 + #: src/view/com/posts/FollowingEmptyState.tsx:70 1837 + #: src/view/com/posts/FollowingEndOfFeed.tsx:71 1838 + msgid "Discover new custom feeds" 1839 + msgstr "" 1840 + 1841 + #: src/view/screens/Search/Explore.tsx:389 1842 + msgid "Discover new feeds" 1843 + msgstr "" 1844 + 1845 + #: src/view/screens/Feeds.tsx:757 1846 + msgid "Discover New Feeds" 1847 + msgstr "" 1848 + 1849 + #: src/components/Dialog/index.tsx:265 1850 + msgid "Dismiss" 1851 + msgstr "" 1852 + 1853 + #: src/view/com/composer/Composer.tsx:1101 1854 + msgid "Dismiss error" 1855 + msgstr "" 1856 + 1857 + #: src/components/ProgressGuide/List.tsx:40 1858 + msgid "Dismiss getting started guide" 1859 + msgstr "" 1860 + 1861 + #: src/view/screens/AccessibilitySettings.tsx:96 1862 + msgid "Display larger alt text badges" 1863 + msgstr "" 1864 + 1865 + #: src/view/com/modals/EditProfile.tsx:187 1866 + msgid "Display name" 1867 + msgstr "" 1868 + 1869 + #: src/screens/Profile/Header/EditProfileDialog.tsx:329 1870 + msgid "Display name is too long" 1871 + msgstr "" 1872 + 1873 + #: src/screens/Profile/Header/EditProfileDialog.tsx:330 1874 + msgid "Display name is too long. The maximum number of characters is {DISPLAY_NAME_MAX_GRAPHEMES}." 1875 + msgstr "" 1876 + 1877 + #: src/view/com/modals/ChangeHandle.tsx:384 1878 + msgid "DNS Panel" 1879 + msgstr "" 1880 + 1881 + #: src/components/dialogs/MutedWords.tsx:302 1882 + msgid "Do not apply this mute word to users you follow" 1883 + msgstr "" 1884 + 1885 + #: src/view/com/composer/labels/LabelsBtn.tsx:194 1886 + msgid "Does not contain adult content." 1887 + msgstr "" 1888 + 1889 + #: src/view/com/composer/labels/LabelsBtn.tsx:240 1890 + msgid "Does not contain graphic or disturbing content." 1891 + msgstr "" 1892 + 1893 + #: src/lib/moderation/useGlobalLabelStrings.ts:39 1894 + msgid "Does not include nudity." 1895 + msgstr "" 1896 + 1897 + #: src/screens/Signup/StepHandle.tsx:159 1898 + msgid "Doesn't begin or end with a hyphen" 1899 + msgstr "" 1900 + 1901 + #: src/view/com/modals/ChangeHandle.tsx:468 1902 + msgid "Domain Value" 1903 + msgstr "" 1904 + 1905 + #: src/view/com/modals/ChangeHandle.tsx:475 1906 + msgid "Domain verified!" 1907 + msgstr "" 1908 + 1909 + #: src/components/dialogs/BirthDateSettings.tsx:118 1910 + #: src/components/dialogs/BirthDateSettings.tsx:124 1911 + #: src/components/forms/DateField/index.tsx:77 1912 + #: src/components/forms/DateField/index.tsx:83 1913 + #: src/screens/Onboarding/StepProfile/index.tsx:330 1914 + #: src/screens/Onboarding/StepProfile/index.tsx:333 1915 + #: src/view/com/auth/server-input/index.tsx:170 1916 + #: src/view/com/auth/server-input/index.tsx:171 1917 + #: src/view/com/composer/videos/SubtitleDialog.tsx:169 1918 + #: src/view/com/composer/videos/SubtitleDialog.tsx:179 1919 + #: src/view/com/modals/AddAppPasswords.tsx:243 1920 + #: src/view/com/modals/CropImage.web.tsx:112 1921 + #: src/view/com/modals/InviteCodes.tsx:81 1922 + #: src/view/com/modals/InviteCodes.tsx:124 1923 + #: src/view/com/modals/ListAddRemoveUsers.tsx:143 1924 + msgid "Done" 1925 + msgstr "" 1926 + 1927 + #: src/view/com/modals/ListAddRemoveUsers.tsx:145 1928 + #: src/view/com/modals/SelfLabel.tsx:158 1929 + #: src/view/com/modals/UserAddRemoveLists.tsx:113 1930 + #: src/view/com/modals/UserAddRemoveLists.tsx:116 1931 + msgctxt "action" 1932 + msgid "Done" 1933 + msgstr "" 1934 + 1935 + #: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:43 1936 + msgid "Done{extraText}" 1937 + msgstr "" 1938 + 1939 + #: src/components/Dialog/index.tsx:266 1940 + msgid "Double tap to close the dialog" 1941 + msgstr "" 1942 + 1943 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 1944 + msgid "Download Bluesky" 1945 + msgstr "" 1946 + 1947 + #: src/view/screens/Settings/ExportCarDialog.tsx:76 1948 + #: src/view/screens/Settings/ExportCarDialog.tsx:80 1949 + msgid "Download CAR file" 1950 + msgstr "" 1951 + 1952 + #: src/view/com/composer/text-input/TextInput.web.tsx:291 1953 + msgid "Drop to add images" 1954 + msgstr "" 1955 + 1956 + #: src/components/dialogs/MutedWords.tsx:153 1957 + msgid "Duration:" 1958 + msgstr "" 1959 + 1960 + #: src/view/com/modals/ChangeHandle.tsx:245 1961 + msgid "e.g. alice" 1962 + msgstr "" 1963 + 1964 + #: src/screens/Profile/Header/EditProfileDialog.tsx:318 1965 + msgid "e.g. Alice Lastname" 1966 + msgstr "" 1967 + 1968 + #: src/view/com/modals/ChangeHandle.tsx:367 1969 + msgid "e.g. alice.com" 1970 + msgstr "" 1971 + 1972 + #: src/lib/moderation/useGlobalLabelStrings.ts:43 1973 + msgid "E.g. artistic nudes." 1974 + msgstr "" 1975 + 1976 + #: src/view/com/modals/CreateOrEditList.tsx:263 1977 + msgid "e.g. Great Posters" 1978 + msgstr "" 1979 + 1980 + #: src/view/com/modals/CreateOrEditList.tsx:264 1981 + msgid "e.g. Spammers" 1982 + msgstr "" 1983 + 1984 + #: src/view/com/modals/CreateOrEditList.tsx:292 1985 + msgid "e.g. The posters who never miss." 1986 + msgstr "" 1987 + 1988 + #: src/view/com/modals/CreateOrEditList.tsx:293 1989 + msgid "e.g. Users that repeatedly reply with ads." 1990 + msgstr "" 1991 + 1992 + #: src/view/com/modals/InviteCodes.tsx:97 1993 + msgid "Each code works once. You'll receive more invite codes periodically." 1994 + msgstr "" 1995 + 1996 + #: src/screens/StarterPack/StarterPackScreen.tsx:562 1997 + #: src/screens/StarterPack/Wizard/index.tsx:551 1998 + #: src/screens/StarterPack/Wizard/index.tsx:558 1999 + #: src/view/screens/Feeds.tsx:385 2000 + #: src/view/screens/Feeds.tsx:453 2001 + msgid "Edit" 2002 + msgstr "" 2003 + 2004 + #: src/view/com/lists/ListMembers.tsx:146 2005 + msgctxt "action" 2006 + msgid "Edit" 2007 + msgstr "" 2008 + 2009 + #: src/view/com/util/UserAvatar.tsx:347 2010 + #: src/view/com/util/UserBanner.tsx:95 2011 + msgid "Edit avatar" 2012 + msgstr "" 2013 + 2014 + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:111 2015 + msgid "Edit Feeds" 2016 + msgstr "" 2017 + 2018 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:58 2019 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:62 2020 + #: src/view/com/composer/photos/Gallery.tsx:191 2021 + msgid "Edit image" 2022 + msgstr "" 2023 + 2024 + #: src/view/com/util/forms/PostDropdownBtn.tsx:632 2025 + #: src/view/com/util/forms/PostDropdownBtn.tsx:647 2026 + msgid "Edit interaction settings" 2027 + msgstr "" 2028 + 2029 + #: src/view/screens/ProfileList.tsx:509 2030 + msgid "Edit list details" 2031 + msgstr "" 2032 + 2033 + #: src/view/com/modals/CreateOrEditList.tsx:230 2034 + msgid "Edit Moderation List" 2035 + msgstr "" 2036 + 2037 + #: src/Navigation.tsx:290 2038 + #: src/view/screens/Feeds.tsx:383 2039 + #: src/view/screens/Feeds.tsx:451 2040 + #: src/view/screens/SavedFeeds.tsx:116 2041 + msgid "Edit My Feeds" 2042 + msgstr "" 2043 + 2044 + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:109 2045 + msgid "Edit People" 2046 + msgstr "" 2047 + 2048 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:66 2049 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:204 2050 + msgid "Edit post interaction settings" 2051 + msgstr "" 2052 + 2053 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:178 2054 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:170 2055 + msgid "Edit profile" 2056 + msgstr "" 2057 + 2058 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 2059 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:173 2060 + msgid "Edit Profile" 2061 + msgstr "" 2062 + 2063 + #: src/screens/StarterPack/StarterPackScreen.tsx:554 2064 + msgid "Edit starter pack" 2065 + msgstr "" 2066 + 2067 + #: src/view/com/modals/CreateOrEditList.tsx:225 2068 + msgid "Edit User List" 2069 + msgstr "" 2070 + 2071 + #: src/components/WhoCanReply.tsx:87 2072 + msgid "Edit who can reply" 2073 + msgstr "" 2074 + 2075 + #: src/Navigation.tsx:372 2076 + msgid "Edit your starter pack" 2077 + msgstr "" 2078 + 2079 + #: src/screens/Onboarding/index.tsx:31 2080 + #: src/screens/Onboarding/state.ts:88 2081 + msgid "Education" 2082 + msgstr "" 2083 + 2084 + #: src/screens/Signup/StepInfo/index.tsx:170 2085 + #: src/view/com/modals/ChangeEmail.tsx:136 2086 + msgid "Email" 2087 + msgstr "" 2088 + 2089 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:64 2090 + msgid "Email 2FA disabled" 2091 + msgstr "" 2092 + 2093 + #: src/screens/Login/ForgotPasswordForm.tsx:93 2094 + msgid "Email address" 2095 + msgstr "" 2096 + 2097 + #: src/components/intents/VerifyEmailIntentDialog.tsx:104 2098 + msgid "Email Resent" 2099 + msgstr "" 2100 + 2101 + #: src/view/com/modals/ChangeEmail.tsx:54 2102 + #: src/view/com/modals/ChangeEmail.tsx:83 2103 + msgid "Email updated" 2104 + msgstr "" 2105 + 2106 + #: src/view/com/modals/ChangeEmail.tsx:106 2107 + msgid "Email Updated" 2108 + msgstr "" 2109 + 2110 + #: src/view/com/modals/VerifyEmail.tsx:85 2111 + msgid "Email verified" 2112 + msgstr "" 2113 + 2114 + #: src/components/intents/VerifyEmailIntentDialog.tsx:79 2115 + msgid "Email Verified" 2116 + msgstr "" 2117 + 2118 + #: src/view/screens/Settings/index.tsx:319 2119 + msgid "Email:" 2120 + msgstr "" 2121 + 2122 + #: src/components/dialogs/Embed.tsx:113 2123 + msgid "Embed HTML code" 2124 + msgstr "" 2125 + 2126 + #: src/components/dialogs/Embed.tsx:97 2127 + #: src/view/com/util/forms/PostDropdownBtn.tsx:469 2128 + #: src/view/com/util/forms/PostDropdownBtn.tsx:471 2129 + msgid "Embed post" 2130 + msgstr "" 2131 + 2132 + #: src/components/dialogs/Embed.tsx:101 2133 + msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." 2134 + msgstr "" 2135 + 2136 + #: src/components/dialogs/EmbedConsent.tsx:100 2137 + msgid "Enable {0} only" 2138 + msgstr "" 2139 + 2140 + #: src/screens/Moderation/index.tsx:340 2141 + msgid "Enable adult content" 2142 + msgstr "" 2143 + 2144 + #: src/components/dialogs/EmbedConsent.tsx:81 2145 + #: src/components/dialogs/EmbedConsent.tsx:88 2146 + msgid "Enable external media" 2147 + msgstr "" 2148 + 2149 + #: src/view/screens/PreferencesExternalEmbeds.tsx:71 2150 + msgid "Enable media players for" 2151 + msgstr "" 2152 + 2153 + #: src/view/screens/NotificationsSettings.tsx:65 2154 + #: src/view/screens/NotificationsSettings.tsx:68 2155 + msgid "Enable priority notifications" 2156 + msgstr "" 2157 + 2158 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:389 2159 + msgid "Enable subtitles" 2160 + msgstr "" 2161 + 2162 + #: src/components/dialogs/EmbedConsent.tsx:93 2163 + msgid "Enable this source only" 2164 + msgstr "" 2165 + 2166 + #: src/screens/Messages/Settings.tsx:131 2167 + #: src/screens/Messages/Settings.tsx:134 2168 + #: src/screens/Moderation/index.tsx:351 2169 + msgid "Enabled" 2170 + msgstr "" 2171 + 2172 + #: src/screens/Profile/Sections/Feed.tsx:114 2173 + msgid "End of feed" 2174 + msgstr "" 2175 + 2176 + #: src/view/com/composer/videos/SubtitleDialog.tsx:159 2177 + msgid "Ensure you have selected a language for each subtitle file." 2178 + msgstr "" 2179 + 2180 + #: src/view/com/modals/AddAppPasswords.tsx:161 2181 + msgid "Enter a name for this App Password" 2182 + msgstr "" 2183 + 2184 + #: src/screens/Login/SetNewPasswordForm.tsx:133 2185 + msgid "Enter a password" 2186 + msgstr "" 2187 + 2188 + #: src/components/dialogs/MutedWords.tsx:127 2189 + #: src/components/dialogs/MutedWords.tsx:128 2190 + msgid "Enter a word or tag" 2191 + msgstr "" 2192 + 2193 + #: src/components/dialogs/VerifyEmailDialog.tsx:75 2194 + msgid "Enter Code" 2195 + msgstr "" 2196 + 2197 + #: src/view/com/modals/VerifyEmail.tsx:113 2198 + msgid "Enter Confirmation Code" 2199 + msgstr "" 2200 + 2201 + #: src/view/com/modals/ChangePassword.tsx:154 2202 + msgid "Enter the code you received to change your password." 2203 + msgstr "" 2204 + 2205 + #: src/view/com/modals/ChangeHandle.tsx:357 2206 + msgid "Enter the domain you want to use" 2207 + msgstr "" 2208 + 2209 + #: src/screens/Login/ForgotPasswordForm.tsx:113 2210 + msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." 2211 + msgstr "" 2212 + 2213 + #: src/components/dialogs/BirthDateSettings.tsx:107 2214 + msgid "Enter your birth date" 2215 + msgstr "" 2216 + 2217 + #: src/screens/Login/ForgotPasswordForm.tsx:99 2218 + #: src/screens/Signup/StepInfo/index.tsx:182 2219 + msgid "Enter your email address" 2220 + msgstr "" 2221 + 2222 + #: src/view/com/modals/ChangeEmail.tsx:42 2223 + msgid "Enter your new email above" 2224 + msgstr "" 2225 + 2226 + #: src/view/com/modals/ChangeEmail.tsx:112 2227 + msgid "Enter your new email address below." 2228 + msgstr "" 2229 + 2230 + #: src/screens/Login/index.tsx:98 2231 + msgid "Enter your username and password" 2232 + msgstr "" 2233 + 2234 + #: src/view/com/composer/Composer.tsx:1176 2235 + msgid "Error" 2236 + msgstr "" 2237 + 2238 + #: src/view/screens/Settings/ExportCarDialog.tsx:46 2239 + msgid "Error occurred while saving file" 2240 + msgstr "" 2241 + 2242 + #: src/screens/Signup/StepCaptcha/index.tsx:56 2243 + msgid "Error receiving captcha response." 2244 + msgstr "" 2245 + 2246 + #: src/screens/Onboarding/StepInterests/index.tsx:183 2247 + #: src/view/screens/Search/Search.tsx:121 2248 + msgid "Error:" 2249 + msgstr "" 2250 + 2251 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:365 2252 + msgid "Everybody" 2253 + msgstr "" 2254 + 2255 + #: src/components/WhoCanReply.tsx:67 2256 + msgid "Everybody can reply" 2257 + msgstr "" 2258 + 2259 + #: src/components/WhoCanReply.tsx:213 2260 + msgid "Everybody can reply to this post." 2261 + msgstr "" 2262 + 2263 + #: src/screens/Messages/Settings.tsx:75 2264 + #: src/screens/Messages/Settings.tsx:78 2265 + msgid "Everyone" 2266 + msgstr "" 2267 + 2268 + #: src/lib/moderation/useReportOptions.ts:73 2269 + msgid "Excessive mentions or replies" 2270 + msgstr "" 2271 + 2272 + #: src/lib/moderation/useReportOptions.ts:86 2273 + msgid "Excessive or unwanted messages" 2274 + msgstr "" 2275 + 2276 + #: src/components/dialogs/MutedWords.tsx:311 2277 + msgid "Exclude users you follow" 2278 + msgstr "" 2279 + 2280 + #: src/components/dialogs/MutedWords.tsx:514 2281 + msgid "Excludes users you follow" 2282 + msgstr "" 2283 + 2284 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:406 2285 + msgid "Exit fullscreen" 2286 + msgstr "" 2287 + 2288 + #: src/view/com/modals/DeleteAccount.tsx:293 2289 + msgid "Exits account deletion process" 2290 + msgstr "" 2291 + 2292 + #: src/view/com/modals/ChangeHandle.tsx:138 2293 + msgid "Exits handle change process" 2294 + msgstr "" 2295 + 2296 + #: src/view/com/modals/CropImage.web.tsx:95 2297 + msgid "Exits image cropping process" 2298 + msgstr "" 2299 + 2300 + #: src/view/com/lightbox/Lightbox.web.tsx:130 2301 + msgid "Exits image view" 2302 + msgstr "" 2303 + 2304 + #: src/view/com/modals/ListAddRemoveUsers.tsx:89 2305 + msgid "Exits inputting search query" 2306 + msgstr "" 2307 + 2308 + #: src/view/com/lightbox/Lightbox.web.tsx:183 2309 + msgid "Expand alt text" 2310 + msgstr "" 2311 + 2312 + #: src/view/com/notifications/FeedItem.tsx:266 2313 + msgid "Expand list of users" 2314 + msgstr "" 2315 + 2316 + #: src/view/com/composer/ComposerReplyTo.tsx:82 2317 + #: src/view/com/composer/ComposerReplyTo.tsx:85 2318 + msgid "Expand or collapse the full post you are replying to" 2319 + msgstr "" 2320 + 2321 + #: src/lib/api/index.ts:356 2322 + msgid "Expected uri to resolve to a record" 2323 + msgstr "" 2324 + 2325 + #: src/view/screens/NotificationsSettings.tsx:83 2326 + msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." 2327 + msgstr "" 2328 + 2329 + #: src/components/dialogs/MutedWords.tsx:500 2330 + msgid "Expired" 2331 + msgstr "" 2332 + 2333 + #: src/components/dialogs/MutedWords.tsx:502 2334 + msgid "Expires {0}" 2335 + msgstr "" 2336 + 2337 + #: src/lib/moderation/useGlobalLabelStrings.ts:47 2338 + msgid "Explicit or potentially disturbing media." 2339 + msgstr "" 2340 + 2341 + #: src/lib/moderation/useGlobalLabelStrings.ts:35 2342 + msgid "Explicit sexual images." 2343 + msgstr "" 2344 + 2345 + #: src/view/screens/Settings/index.tsx:752 2346 + msgid "Export my data" 2347 + msgstr "" 2348 + 2349 + #: src/view/screens/Settings/ExportCarDialog.tsx:61 2350 + #: src/view/screens/Settings/index.tsx:763 2351 + msgid "Export My Data" 2352 + msgstr "" 2353 + 2354 + #: src/components/dialogs/EmbedConsent.tsx:54 2355 + #: src/components/dialogs/EmbedConsent.tsx:58 2356 + msgid "External Media" 2357 + msgstr "" 2358 + 2359 + #: src/components/dialogs/EmbedConsent.tsx:70 2360 + #: src/view/screens/PreferencesExternalEmbeds.tsx:62 2361 + msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." 2362 + msgstr "" 2363 + 2364 + #: src/Navigation.tsx:309 2365 + #: src/view/screens/PreferencesExternalEmbeds.tsx:51 2366 + #: src/view/screens/Settings/index.tsx:645 2367 + msgid "External Media Preferences" 2368 + msgstr "" 2369 + 2370 + #: src/view/screens/Settings/index.tsx:636 2371 + msgid "External media settings" 2372 + msgstr "" 2373 + 2374 + #: src/view/com/modals/AddAppPasswords.tsx:119 2375 + #: src/view/com/modals/AddAppPasswords.tsx:123 2376 + msgid "Failed to create app password." 2377 + msgstr "" 2378 + 2379 + #: src/screens/StarterPack/Wizard/index.tsx:229 2380 + #: src/screens/StarterPack/Wizard/index.tsx:237 2381 + msgid "Failed to create starter pack" 2382 + msgstr "" 2383 + 2384 + #: src/view/com/modals/CreateOrEditList.tsx:186 2385 + msgid "Failed to create the list. Check your internet connection and try again." 2386 + msgstr "" 2387 + 2388 + #: src/components/dms/MessageMenu.tsx:73 2389 + msgid "Failed to delete message" 2390 + msgstr "" 2391 + 2392 + #: src/view/com/util/forms/PostDropdownBtn.tsx:200 2393 + msgid "Failed to delete post, please try again" 2394 + msgstr "" 2395 + 2396 + #: src/screens/StarterPack/StarterPackScreen.tsx:686 2397 + msgid "Failed to delete starter pack" 2398 + msgstr "" 2399 + 2400 + #: src/view/screens/Search/Explore.tsx:427 2401 + #: src/view/screens/Search/Explore.tsx:455 2402 + msgid "Failed to load feeds preferences" 2403 + msgstr "" 2404 + 2405 + #: src/components/dialogs/GifSelect.tsx:224 2406 + msgid "Failed to load GIFs" 2407 + msgstr "" 2408 + 2409 + #: src/screens/Messages/components/MessageListError.tsx:23 2410 + msgid "Failed to load past messages" 2411 + msgstr "" 2412 + 2413 + #: src/view/screens/Search/Explore.tsx:420 2414 + #: src/view/screens/Search/Explore.tsx:448 2415 + msgid "Failed to load suggested feeds" 2416 + msgstr "" 2417 + 2418 + #: src/view/screens/Search/Explore.tsx:378 2419 + msgid "Failed to load suggested follows" 2420 + msgstr "" 2421 + 2422 + #: src/state/queries/pinned-post.ts:75 2423 + msgid "Failed to pin post" 2424 + msgstr "" 2425 + 2426 + #: src/view/com/lightbox/Lightbox.tsx:97 2427 + msgid "Failed to save image: {0}" 2428 + msgstr "" 2429 + 2430 + #: src/state/queries/notifications/settings.ts:39 2431 + msgid "Failed to save notification preferences, please try again" 2432 + msgstr "" 2433 + 2434 + #: src/lib/api/index.ts:145 2435 + #: src/lib/api/index.ts:170 2436 + msgid "Failed to save post interaction settings. Your post was created but users may be able to interact with it." 2437 + msgstr "" 2438 + 2439 + #: src/components/dms/MessageItem.tsx:233 2440 + msgid "Failed to send" 2441 + msgstr "" 2442 + 2443 + #: src/components/moderation/LabelsOnMeDialog.tsx:229 2444 + #: src/screens/Messages/components/ChatDisabled.tsx:87 2445 + msgid "Failed to submit appeal, please try again." 2446 + msgstr "" 2447 + 2448 + #: src/view/com/util/forms/PostDropdownBtn.tsx:229 2449 + msgid "Failed to toggle thread mute, please try again" 2450 + msgstr "" 2451 + 2452 + #: src/components/FeedCard.tsx:276 2453 + msgid "Failed to update feeds" 2454 + msgstr "" 2455 + 2456 + #: src/screens/Messages/Settings.tsx:35 2457 + msgid "Failed to update settings" 2458 + msgstr "" 2459 + 2460 + #: src/lib/media/video/upload.ts:72 2461 + #: src/lib/media/video/upload.web.ts:74 2462 + #: src/lib/media/video/upload.web.ts:78 2463 + #: src/lib/media/video/upload.web.ts:88 2464 + msgid "Failed to upload video" 2465 + msgstr "" 2466 + 2467 + #: src/Navigation.tsx:225 2468 + msgid "Feed" 2469 + msgstr "" 2470 + 2471 + #: src/components/FeedCard.tsx:134 2472 + #: src/view/com/feeds/FeedSourceCard.tsx:250 2473 + msgid "Feed by {0}" 2474 + msgstr "" 2475 + 2476 + #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 2477 + msgid "Feed toggle" 2478 + msgstr "" 2479 + 2480 + #: src/view/shell/desktop/RightNav.tsx:70 2481 + #: src/view/shell/Drawer.tsx:338 2482 + msgid "Feedback" 2483 + msgstr "" 2484 + 2485 + #: src/view/com/util/forms/PostDropdownBtn.tsx:271 2486 + #: src/view/com/util/forms/PostDropdownBtn.tsx:280 2487 + msgid "Feedback sent!" 2488 + msgstr "" 2489 + 2490 + #: src/Navigation.tsx:352 2491 + #: src/screens/StarterPack/StarterPackScreen.tsx:172 2492 + #: src/view/screens/Feeds.tsx:445 2493 + #: src/view/screens/Feeds.tsx:551 2494 + #: src/view/screens/Profile.tsx:223 2495 + #: src/view/screens/Search/Search.tsx:535 2496 + #: src/view/shell/desktop/LeftNav.tsx:401 2497 + #: src/view/shell/Drawer.tsx:489 2498 + #: src/view/shell/Drawer.tsx:490 2499 + msgid "Feeds" 2500 + msgstr "" 2501 + 2502 + #: src/view/screens/SavedFeeds.tsx:207 2503 + msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." 2504 + msgstr "" 2505 + 2506 + #: src/components/FeedCard.tsx:273 2507 + #: src/view/screens/SavedFeeds.tsx:82 2508 + msgid "Feeds updated!" 2509 + msgstr "" 2510 + 2511 + #: src/view/com/modals/ChangeHandle.tsx:468 2512 + msgid "File Contents" 2513 + msgstr "" 2514 + 2515 + #: src/view/screens/Settings/ExportCarDialog.tsx:42 2516 + msgid "File saved successfully!" 2517 + msgstr "" 2518 + 2519 + #: src/lib/moderation/useLabelBehaviorDescription.ts:66 2520 + msgid "Filter from feeds" 2521 + msgstr "" 2522 + 2523 + #: src/screens/Onboarding/StepFinished.tsx:287 2524 + msgid "Finalizing" 2525 + msgstr "Finalising" 2526 + 2527 + #: src/view/com/posts/CustomFeedEmptyState.tsx:47 2528 + #: src/view/com/posts/FollowingEmptyState.tsx:53 2529 + #: src/view/com/posts/FollowingEndOfFeed.tsx:54 2530 + msgid "Find accounts to follow" 2531 + msgstr "" 2532 + 2533 + #: src/view/screens/Search/Search.tsx:607 2534 + msgid "Find posts and users on Bluesky" 2535 + msgstr "" 2536 + 2537 + #: src/view/screens/PreferencesFollowingFeed.tsx:51 2538 + msgid "Fine-tune the content you see on your Following feed." 2539 + msgstr "" 2540 + 2541 + #: src/view/screens/PreferencesThreads.tsx:54 2542 + msgid "Fine-tune the discussion threads." 2543 + msgstr "" 2544 + 2545 + #: src/screens/StarterPack/Wizard/index.tsx:191 2546 + msgid "Finish" 2547 + msgstr "" 2548 + 2549 + #: src/screens/Onboarding/index.tsx:35 2550 + msgid "Fitness" 2551 + msgstr "" 2552 + 2553 + #: src/screens/Onboarding/StepFinished.tsx:267 2554 + msgid "Flexible" 2555 + msgstr "" 2556 + 2557 + #. User is not following this account, click to follow 2558 + #: src/components/ProfileCard.tsx:358 2559 + #: src/components/ProfileHoverCard/index.web.tsx:449 2560 + #: src/components/ProfileHoverCard/index.web.tsx:460 2561 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:220 2562 + #: src/view/com/post-thread/PostThreadFollowBtn.tsx:132 2563 + msgid "Follow" 2564 + msgstr "" 2565 + 2566 + #: src/view/com/profile/FollowButton.tsx:70 2567 + msgctxt "action" 2568 + msgid "Follow" 2569 + msgstr "" 2570 + 2571 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 2572 + #: src/view/com/post-thread/PostThreadFollowBtn.tsx:114 2573 + msgid "Follow {0}" 2574 + msgstr "" 2575 + 2576 + #: src/view/com/posts/AviFollowButton.tsx:68 2577 + msgid "Follow {name}" 2578 + msgstr "" 2579 + 2580 + #: src/components/ProgressGuide/List.tsx:54 2581 + msgid "Follow 7 accounts" 2582 + msgstr "" 2583 + 2584 + #: src/view/com/profile/ProfileMenu.tsx:222 2585 + #: src/view/com/profile/ProfileMenu.tsx:233 2586 + msgid "Follow Account" 2587 + msgstr "" 2588 + 2589 + #: src/screens/StarterPack/StarterPackScreen.tsx:416 2590 + #: src/screens/StarterPack/StarterPackScreen.tsx:423 2591 + msgid "Follow all" 2592 + msgstr "" 2593 + 2594 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:218 2595 + #: src/view/com/post-thread/PostThreadFollowBtn.tsx:130 2596 + msgid "Follow Back" 2597 + msgstr "" 2598 + 2599 + #: src/view/com/profile/FollowButton.tsx:79 2600 + msgctxt "action" 2601 + msgid "Follow Back" 2602 + msgstr "" 2603 + 2604 + #: src/view/screens/Search/Explore.tsx:334 2605 + msgid "Follow more accounts to get connected to your interests and build your network." 2606 + msgstr "" 2607 + 2608 + #: src/components/KnownFollowers.tsx:231 2609 + msgid "Followed by <0>{0}</0>" 2610 + msgstr "" 2611 + 2612 + #: src/components/KnownFollowers.tsx:217 2613 + msgid "Followed by <0>{0}</0> and {1, plural, one {# other} other {# others}}" 2614 + msgstr "" 2615 + 2616 + #: src/components/KnownFollowers.tsx:204 2617 + msgid "Followed by <0>{0}</0> and <1>{1}</1>" 2618 + msgstr "" 2619 + 2620 + #: src/components/KnownFollowers.tsx:186 2621 + msgid "Followed by <0>{0}</0>, <1>{1}</1>, and {2, plural, one {# other} other {# others}}" 2622 + msgstr "" 2623 + 2624 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:404 2625 + msgid "Followed users" 2626 + msgstr "" 2627 + 2628 + #: src/view/com/notifications/FeedItem.tsx:207 2629 + msgid "followed you" 2630 + msgstr "" 2631 + 2632 + #: src/view/com/notifications/FeedItem.tsx:205 2633 + msgid "followed you back" 2634 + msgstr "" 2635 + 2636 + #: src/view/screens/ProfileFollowers.tsx:29 2637 + #: src/view/screens/ProfileFollowers.tsx:30 2638 + msgid "Followers" 2639 + msgstr "" 2640 + 2641 + #: src/Navigation.tsx:186 2642 + msgid "Followers of @{0} that you know" 2643 + msgstr "" 2644 + 2645 + #: src/screens/Profile/KnownFollowers.tsx:108 2646 + #: src/screens/Profile/KnownFollowers.tsx:118 2647 + msgid "Followers you know" 2648 + msgstr "" 2649 + 2650 + #. User is following this account, click to unfollow 2651 + #: src/components/ProfileCard.tsx:352 2652 + #: src/components/ProfileHoverCard/index.web.tsx:448 2653 + #: src/components/ProfileHoverCard/index.web.tsx:459 2654 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:216 2655 + #: src/view/com/post-thread/PostThreadFollowBtn.tsx:135 2656 + #: src/view/screens/Feeds.tsx:631 2657 + #: src/view/screens/ProfileFollows.tsx:29 2658 + #: src/view/screens/ProfileFollows.tsx:30 2659 + #: src/view/screens/SavedFeeds.tsx:429 2660 + msgid "Following" 2661 + msgstr "" 2662 + 2663 + #: src/components/ProfileCard.tsx:318 2664 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:90 2665 + msgid "Following {0}" 2666 + msgstr "" 2667 + 2668 + #: src/view/com/posts/AviFollowButton.tsx:50 2669 + msgid "Following {name}" 2670 + msgstr "" 2671 + 2672 + #: src/view/screens/Settings/index.tsx:539 2673 + msgid "Following feed preferences" 2674 + msgstr "" 2675 + 2676 + #: src/Navigation.tsx:296 2677 + #: src/view/screens/PreferencesFollowingFeed.tsx:48 2678 + #: src/view/screens/Settings/index.tsx:548 2679 + msgid "Following Feed Preferences" 2680 + msgstr "" 2681 + 2682 + #: src/screens/Profile/Header/Handle.tsx:33 2683 + msgid "Follows you" 2684 + msgstr "" 2685 + 2686 + #: src/components/Pills.tsx:175 2687 + msgid "Follows You" 2688 + msgstr "" 2689 + 2690 + #: src/components/dialogs/nuxs/NeueTypography.tsx:71 2691 + #: src/screens/Settings/AppearanceSettings.tsx:141 2692 + msgid "Font" 2693 + msgstr "" 2694 + 2695 + #: src/components/dialogs/nuxs/NeueTypography.tsx:91 2696 + #: src/screens/Settings/AppearanceSettings.tsx:161 2697 + msgid "Font size" 2698 + msgstr "" 2699 + 2700 + #: src/screens/Onboarding/index.tsx:40 2701 + #: src/screens/Onboarding/state.ts:89 2702 + msgid "Food" 2703 + msgstr "" 2704 + 2705 + #: src/view/com/modals/DeleteAccount.tsx:129 2706 + msgid "For security reasons, we'll need to send a confirmation code to your email address." 2707 + msgstr "" 2708 + 2709 + #: src/view/com/modals/AddAppPasswords.tsx:233 2710 + msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." 2711 + msgstr "" 2712 + 2713 + #: src/components/dialogs/nuxs/NeueTypography.tsx:73 2714 + #: src/screens/Settings/AppearanceSettings.tsx:143 2715 + msgid "For the best experience, we recommend using the theme font." 2716 + msgstr "" 2717 + 2718 + #: src/components/dialogs/MutedWords.tsx:178 2719 + msgid "Forever" 2720 + msgstr "" 2721 + 2722 + #: src/screens/Login/index.tsx:126 2723 + #: src/screens/Login/index.tsx:141 2724 + msgid "Forgot Password" 2725 + msgstr "" 2726 + 2727 + #: src/screens/Login/LoginForm.tsx:230 2728 + msgid "Forgot password?" 2729 + msgstr "" 2730 + 2731 + #: src/screens/Login/LoginForm.tsx:241 2732 + msgid "Forgot?" 2733 + msgstr "" 2734 + 2735 + #: src/lib/moderation/useReportOptions.ts:54 2736 + msgid "Frequently Posts Unwanted Content" 2737 + msgstr "" 2738 + 2739 + #: src/screens/Hashtag.tsx:116 2740 + msgid "From @{sanitizedAuthor}" 2741 + msgstr "" 2742 + 2743 + #: src/view/com/posts/FeedItem.tsx:273 2744 + msgctxt "from-feed" 2745 + msgid "From <0/>" 2746 + msgstr "" 2747 + 2748 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:407 2749 + msgid "Fullscreen" 2750 + msgstr "" 2751 + 2752 + #: src/view/com/composer/photos/SelectPhotoBtn.tsx:50 2753 + msgid "Gallery" 2754 + msgstr "" 2755 + 2756 + #: src/components/StarterPack/ProfileStarterPacks.tsx:280 2757 + msgid "Generate a starter pack" 2758 + msgstr "" 2759 + 2760 + #: src/view/shell/Drawer.tsx:342 2761 + msgid "Get help" 2762 + msgstr "" 2763 + 2764 + #: src/view/com/modals/VerifyEmail.tsx:197 2765 + #: src/view/com/modals/VerifyEmail.tsx:199 2766 + msgid "Get Started" 2767 + msgstr "" 2768 + 2769 + #: src/components/ProgressGuide/List.tsx:33 2770 + msgid "Getting started" 2771 + msgstr "" 2772 + 2773 + #: src/components/MediaPreview.tsx:122 2774 + msgid "GIF" 2775 + msgstr "" 2776 + 2777 + #: src/screens/Onboarding/StepProfile/index.tsx:234 2778 + msgid "Give your profile a face" 2779 + msgstr "" 2780 + 2781 + #: src/lib/moderation/useReportOptions.ts:39 2782 + msgid "Glaring violations of law or terms of service" 2783 + msgstr "" 2784 + 2785 + #: src/components/moderation/ScreenHider.tsx:154 2786 + #: src/components/moderation/ScreenHider.tsx:163 2787 + #: src/view/com/auth/LoggedOut.tsx:64 2788 + #: src/view/com/auth/LoggedOut.tsx:65 2789 + #: src/view/screens/NotFound.tsx:55 2790 + #: src/view/screens/ProfileFeed.tsx:111 2791 + #: src/view/screens/ProfileList.tsx:1020 2792 + #: src/view/shell/desktop/LeftNav.tsx:134 2793 + msgid "Go back" 2794 + msgstr "" 2795 + 2796 + #: src/components/Error.tsx:79 2797 + #: src/screens/List/ListHiddenScreen.tsx:210 2798 + #: src/screens/Profile/ErrorState.tsx:62 2799 + #: src/screens/Profile/ErrorState.tsx:66 2800 + #: src/screens/StarterPack/StarterPackScreen.tsx:745 2801 + #: src/view/screens/NotFound.tsx:54 2802 + #: src/view/screens/ProfileFeed.tsx:116 2803 + #: src/view/screens/ProfileList.tsx:1025 2804 + msgid "Go Back" 2805 + msgstr "" 2806 + 2807 + #: src/components/dms/ReportDialog.tsx:149 2808 + #: src/components/ReportDialog/SelectReportOptionView.tsx:80 2809 + #: src/components/ReportDialog/SubmitView.tsx:109 2810 + #: src/screens/Onboarding/Layout.tsx:102 2811 + #: src/screens/Onboarding/Layout.tsx:191 2812 + #: src/screens/Signup/BackNextButtons.tsx:36 2813 + msgid "Go back to previous step" 2814 + msgstr "" 2815 + 2816 + #: src/screens/StarterPack/Wizard/index.tsx:299 2817 + msgid "Go back to the previous step" 2818 + msgstr "" 2819 + 2820 + #: src/view/screens/NotFound.tsx:55 2821 + msgid "Go home" 2822 + msgstr "" 2823 + 2824 + #: src/view/screens/NotFound.tsx:54 2825 + msgid "Go Home" 2826 + msgstr "" 2827 + 2828 + #: src/screens/Messages/components/ChatListItem.tsx:264 2829 + msgid "Go to conversation with {0}" 2830 + msgstr "" 2831 + 2832 + #: src/screens/Login/ForgotPasswordForm.tsx:165 2833 + #: src/view/com/modals/ChangePassword.tsx:168 2834 + msgid "Go to next" 2835 + msgstr "" 2836 + 2837 + #: src/components/dms/ConvoMenu.tsx:167 2838 + msgid "Go to profile" 2839 + msgstr "" 2840 + 2841 + #: src/components/dms/ConvoMenu.tsx:164 2842 + msgid "Go to user's profile" 2843 + msgstr "" 2844 + 2845 + #: src/lib/moderation/useGlobalLabelStrings.ts:46 2846 + msgid "Graphic Media" 2847 + msgstr "" 2848 + 2849 + #: src/state/shell/progress-guide.tsx:161 2850 + msgid "Half way there!" 2851 + msgstr "" 2852 + 2853 + #: src/view/com/modals/ChangeHandle.tsx:253 2854 + msgid "Handle" 2855 + msgstr "" 2856 + 2857 + #: src/view/screens/AccessibilitySettings.tsx:117 2858 + msgid "Haptics" 2859 + msgstr "" 2860 + 2861 + #: src/lib/moderation/useReportOptions.ts:34 2862 + msgid "Harassment, trolling, or intolerance" 2863 + msgstr "" 2864 + 2865 + #: src/Navigation.tsx:332 2866 + msgid "Hashtag" 2867 + msgstr "" 2868 + 2869 + #: src/components/RichText.tsx:225 2870 + msgid "Hashtag: #{tag}" 2871 + msgstr "" 2872 + 2873 + #: src/screens/Signup/index.tsx:173 2874 + msgid "Having trouble?" 2875 + msgstr "" 2876 + 2877 + #: src/view/shell/desktop/RightNav.tsx:99 2878 + #: src/view/shell/Drawer.tsx:351 2879 + msgid "Help" 2880 + msgstr "" 2881 + 2882 + #: src/screens/Onboarding/StepProfile/index.tsx:237 2883 + msgid "Help people know you're not a bot by uploading a picture or creating an avatar." 2884 + msgstr "" 2885 + 2886 + #: src/view/com/modals/AddAppPasswords.tsx:204 2887 + msgid "Here is your app password." 2888 + msgstr "" 2889 + 2890 + #: src/components/ListCard.tsx:130 2891 + msgid "Hidden list" 2892 + msgstr "" 2893 + 2894 + #: src/components/moderation/ContentHider.tsx:116 2895 + #: src/components/moderation/LabelPreference.tsx:134 2896 + #: src/components/moderation/PostHider.tsx:122 2897 + #: src/lib/moderation/useLabelBehaviorDescription.ts:15 2898 + #: src/lib/moderation/useLabelBehaviorDescription.ts:20 2899 + #: src/lib/moderation/useLabelBehaviorDescription.ts:25 2900 + #: src/lib/moderation/useLabelBehaviorDescription.ts:30 2901 + #: src/view/com/util/forms/PostDropdownBtn.tsx:684 2902 + msgid "Hide" 2903 + msgstr "" 2904 + 2905 + #: src/view/com/notifications/FeedItem.tsx:477 2906 + msgctxt "action" 2907 + msgid "Hide" 2908 + msgstr "" 2909 + 2910 + #: src/view/com/util/forms/PostDropdownBtn.tsx:543 2911 + #: src/view/com/util/forms/PostDropdownBtn.tsx:549 2912 + msgid "Hide post for me" 2913 + msgstr "" 2914 + 2915 + #: src/view/com/util/forms/PostDropdownBtn.tsx:560 2916 + #: src/view/com/util/forms/PostDropdownBtn.tsx:570 2917 + msgid "Hide reply for everyone" 2918 + msgstr "" 2919 + 2920 + #: src/view/com/util/forms/PostDropdownBtn.tsx:542 2921 + #: src/view/com/util/forms/PostDropdownBtn.tsx:548 2922 + msgid "Hide reply for me" 2923 + msgstr "" 2924 + 2925 + #: src/components/moderation/ContentHider.tsx:68 2926 + #: src/components/moderation/PostHider.tsx:79 2927 + msgid "Hide the content" 2928 + msgstr "" 2929 + 2930 + #: src/view/com/util/forms/PostDropdownBtn.tsx:679 2931 + msgid "Hide this post?" 2932 + msgstr "" 2933 + 2934 + #: src/view/com/util/forms/PostDropdownBtn.tsx:679 2935 + #: src/view/com/util/forms/PostDropdownBtn.tsx:741 2936 + msgid "Hide this reply?" 2937 + msgstr "" 2938 + 2939 + #: src/view/com/notifications/FeedItem.tsx:468 2940 + msgid "Hide user list" 2941 + msgstr "" 2942 + 2943 + #: src/view/com/posts/FeedErrorMessage.tsx:117 2944 + msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." 2945 + msgstr "" 2946 + 2947 + #: src/view/com/posts/FeedErrorMessage.tsx:105 2948 + msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." 2949 + msgstr "" 2950 + 2951 + #: src/view/com/posts/FeedErrorMessage.tsx:111 2952 + msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." 2953 + msgstr "" 2954 + 2955 + #: src/view/com/posts/FeedErrorMessage.tsx:108 2956 + msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." 2957 + msgstr "" 2958 + 2959 + #: src/view/com/posts/FeedErrorMessage.tsx:102 2960 + msgid "Hmm, we're having trouble finding this feed. It may have been deleted." 2961 + msgstr "" 2962 + 2963 + #: src/screens/Moderation/index.tsx:60 2964 + msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." 2965 + msgstr "" 2966 + 2967 + #: src/screens/Profile/ErrorState.tsx:31 2968 + msgid "Hmmmm, we couldn't load that moderation service." 2969 + msgstr "" 2970 + 2971 + #: src/view/com/composer/state/video.ts:427 2972 + msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" 2973 + msgstr "" 2974 + 2975 + #: src/Navigation.tsx:549 2976 + #: src/Navigation.tsx:569 2977 + #: src/view/shell/bottom-bar/BottomBar.tsx:158 2978 + #: src/view/shell/desktop/LeftNav.tsx:369 2979 + #: src/view/shell/Drawer.tsx:421 2980 + #: src/view/shell/Drawer.tsx:422 2981 + msgid "Home" 2982 + msgstr "" 2983 + 2984 + #: src/view/com/modals/ChangeHandle.tsx:407 2985 + msgid "Host:" 2986 + msgstr "" 2987 + 2988 + #: src/screens/Login/ForgotPasswordForm.tsx:83 2989 + #: src/screens/Login/LoginForm.tsx:166 2990 + #: src/screens/Signup/StepInfo/index.tsx:133 2991 + #: src/view/com/modals/ChangeHandle.tsx:268 2992 + msgid "Hosting provider" 2993 + msgstr "" 2994 + 2995 + #: src/view/com/modals/InAppBrowserConsent.tsx:41 2996 + msgid "How should we open this link?" 2997 + msgstr "" 2998 + 2999 + #: src/view/com/modals/VerifyEmail.tsx:222 3000 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:131 3001 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:134 3002 + msgid "I have a code" 3003 + msgstr "" 3004 + 3005 + #: src/components/dialogs/VerifyEmailDialog.tsx:196 3006 + #: src/components/dialogs/VerifyEmailDialog.tsx:203 3007 + msgid "I Have a Code" 3008 + msgstr "" 3009 + 3010 + #: src/view/com/modals/VerifyEmail.tsx:224 3011 + msgid "I have a confirmation code" 3012 + msgstr "" 3013 + 3014 + #: src/view/com/modals/ChangeHandle.tsx:271 3015 + msgid "I have my own domain" 3016 + msgstr "" 3017 + 3018 + #: src/components/dms/BlockedByListDialog.tsx:57 3019 + #: src/components/dms/ReportConversationPrompt.tsx:22 3020 + msgid "I understand" 3021 + msgstr "" 3022 + 3023 + #: src/view/com/lightbox/Lightbox.web.tsx:185 3024 + msgid "If alt text is long, toggles alt text expanded state" 3025 + msgstr "" 3026 + 3027 + #: src/screens/Signup/StepInfo/Policies.tsx:110 3028 + msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." 3029 + msgstr "" 3030 + 3031 + #: src/view/screens/ProfileList.tsx:714 3032 + msgid "If you delete this list, you won't be able to recover it." 3033 + msgstr "" 3034 + 3035 + #: src/view/com/util/forms/PostDropdownBtn.tsx:670 3036 + msgid "If you remove this post, you won't be able to recover it." 3037 + msgstr "" 3038 + 3039 + #: src/view/com/modals/ChangePassword.tsx:149 3040 + msgid "If you want to change your password, we will send you a code to verify that this is your account." 3041 + msgstr "" 3042 + 3043 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 3044 + msgid "If you're trying to change your handle or email, do so before you deactivate." 3045 + msgstr "" 3046 + 3047 + #: src/lib/moderation/useReportOptions.ts:38 3048 + msgid "Illegal and Urgent" 3049 + msgstr "" 3050 + 3051 + #: src/view/com/util/images/Gallery.tsx:57 3052 + msgid "Image" 3053 + msgstr "" 3054 + 3055 + #: src/components/StarterPack/ShareDialog.tsx:77 3056 + msgid "Image saved to your camera roll!" 3057 + msgstr "" 3058 + 3059 + #: src/lib/moderation/useReportOptions.ts:49 3060 + msgid "Impersonation or false claims about identity or affiliation" 3061 + msgstr "" 3062 + 3063 + #: src/lib/moderation/useReportOptions.ts:68 3064 + msgid "Impersonation, misinformation, or false claims" 3065 + msgstr "" 3066 + 3067 + #: src/lib/moderation/useReportOptions.ts:91 3068 + msgid "Inappropriate messages or explicit links" 3069 + msgstr "" 3070 + 3071 + #: src/screens/Login/SetNewPasswordForm.tsx:121 3072 + msgid "Input code sent to your email for password reset" 3073 + msgstr "" 3074 + 3075 + #: src/view/com/modals/DeleteAccount.tsx:246 3076 + msgid "Input confirmation code for account deletion" 3077 + msgstr "" 3078 + 3079 + #: src/view/com/modals/AddAppPasswords.tsx:175 3080 + msgid "Input name for app password" 3081 + msgstr "" 3082 + 3083 + #: src/screens/Login/SetNewPasswordForm.tsx:145 3084 + msgid "Input new password" 3085 + msgstr "" 3086 + 3087 + #: src/view/com/modals/DeleteAccount.tsx:265 3088 + msgid "Input password for account deletion" 3089 + msgstr "" 3090 + 3091 + #: src/screens/Login/LoginForm.tsx:270 3092 + msgid "Input the code which has been emailed to you" 3093 + msgstr "" 3094 + 3095 + #: src/screens/Login/LoginForm.tsx:200 3096 + msgid "Input the username or email address you used at signup" 3097 + msgstr "" 3098 + 3099 + #: src/screens/Login/LoginForm.tsx:225 3100 + msgid "Input your password" 3101 + msgstr "" 3102 + 3103 + #: src/view/com/modals/ChangeHandle.tsx:376 3104 + msgid "Input your preferred hosting provider" 3105 + msgstr "" 3106 + 3107 + #: src/screens/Signup/StepHandle.tsx:114 3108 + msgid "Input your user handle" 3109 + msgstr "" 3110 + 3111 + #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:52 3112 + msgid "Interaction limited" 3113 + msgstr "" 3114 + 3115 + #: src/components/dialogs/nuxs/NeueTypography.tsx:47 3116 + msgid "Introducing new font settings" 3117 + msgstr "" 3118 + 3119 + #: src/screens/Login/LoginForm.tsx:142 3120 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 3121 + msgid "Invalid 2FA confirmation code." 3122 + msgstr "" 3123 + 3124 + #: src/view/com/post-thread/PostThreadItem.tsx:264 3125 + msgid "Invalid or unsupported post record" 3126 + msgstr "" 3127 + 3128 + #: src/screens/Login/LoginForm.tsx:88 3129 + #: src/screens/Login/LoginForm.tsx:147 3130 + msgid "Invalid username or password" 3131 + msgstr "" 3132 + 3133 + #: src/components/intents/VerifyEmailIntentDialog.tsx:91 3134 + msgid "Invalid Verification Code" 3135 + msgstr "" 3136 + 3137 + #: src/view/com/modals/InviteCodes.tsx:94 3138 + msgid "Invite a Friend" 3139 + msgstr "" 3140 + 3141 + #: src/screens/Signup/StepInfo/index.tsx:151 3142 + msgid "Invite code" 3143 + msgstr "" 3144 + 3145 + #: src/screens/Signup/state.ts:258 3146 + msgid "Invite code not accepted. Check that you input it correctly and try again." 3147 + msgstr "" 3148 + 3149 + #: src/view/com/modals/InviteCodes.tsx:171 3150 + msgid "Invite codes: {0} available" 3151 + msgstr "" 3152 + 3153 + #: src/view/com/modals/InviteCodes.tsx:170 3154 + msgid "Invite codes: 1 available" 3155 + msgstr "" 3156 + 3157 + #: src/components/StarterPack/ShareDialog.tsx:97 3158 + msgid "Invite people to this starter pack!" 3159 + msgstr "" 3160 + 3161 + #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 3162 + msgid "Invite your friends to follow your favorite feeds and people" 3163 + msgstr "Invite your friends to follow your favourite feeds and people" 3164 + 3165 + #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 3166 + msgid "Invites, but personal" 3167 + msgstr "" 3168 + 3169 + #: src/screens/Signup/StepInfo/index.tsx:80 3170 + msgid "It looks like you may have entered your email address incorrectly. Are you sure it's right?" 3171 + msgstr "" 3172 + 3173 + #: src/screens/Signup/StepInfo/index.tsx:241 3174 + msgid "It's correct" 3175 + msgstr "" 3176 + 3177 + #: src/screens/StarterPack/Wizard/index.tsx:452 3178 + msgid "It's just you right now! Add more people to your starter pack by searching above." 3179 + msgstr "" 3180 + 3181 + #: src/view/com/composer/Composer.tsx:1120 3182 + msgid "Job ID: {0}" 3183 + msgstr "" 3184 + 3185 + #: src/view/com/auth/SplashScreen.web.tsx:177 3186 + msgid "Jobs" 3187 + msgstr "" 3188 + 3189 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 3190 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 3191 + #: src/screens/StarterPack/StarterPackScreen.tsx:443 3192 + #: src/screens/StarterPack/StarterPackScreen.tsx:454 3193 + msgid "Join Bluesky" 3194 + msgstr "" 3195 + 3196 + #: src/components/StarterPack/QrCode.tsx:61 3197 + msgid "Join the conversation" 3198 + msgstr "" 3199 + 3200 + #: src/screens/Onboarding/index.tsx:21 3201 + #: src/screens/Onboarding/state.ts:91 3202 + msgid "Journalism" 3203 + msgstr "" 3204 + 3205 + #: src/components/moderation/ContentHider.tsx:147 3206 + msgid "Labeled by {0}." 3207 + msgstr "Labelled by {0}." 3208 + 3209 + #: src/components/moderation/ContentHider.tsx:145 3210 + msgid "Labeled by the author." 3211 + msgstr "Labelled by the author." 3212 + 3213 + #: src/view/screens/Profile.tsx:217 3214 + msgid "Labels" 3215 + msgstr "" 3216 + 3217 + #: src/view/com/composer/labels/LabelsBtn.tsx:77 3218 + msgid "Labels added" 3219 + msgstr "" 3220 + 3221 + #: src/screens/Profile/Sections/Labels.tsx:163 3222 + msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." 3223 + msgstr "" 3224 + 3225 + #: src/components/moderation/LabelsOnMeDialog.tsx:71 3226 + msgid "Labels on your account" 3227 + msgstr "" 3228 + 3229 + #: src/components/moderation/LabelsOnMeDialog.tsx:73 3230 + msgid "Labels on your content" 3231 + msgstr "" 3232 + 3233 + #: src/view/com/composer/select-language/SelectLangBtn.tsx:105 3234 + msgid "Language selection" 3235 + msgstr "" 3236 + 3237 + #: src/view/screens/Settings/index.tsx:496 3238 + msgid "Language settings" 3239 + msgstr "" 3240 + 3241 + #: src/Navigation.tsx:159 3242 + #: src/view/screens/LanguageSettings.tsx:86 3243 + msgid "Language Settings" 3244 + msgstr "" 3245 + 3246 + #: src/view/screens/Settings/index.tsx:505 3247 + msgid "Languages" 3248 + msgstr "" 3249 + 3250 + #: src/components/dialogs/nuxs/NeueTypography.tsx:103 3251 + #: src/screens/Settings/AppearanceSettings.tsx:173 3252 + msgid "Larger" 3253 + msgstr "" 3254 + 3255 + #: src/screens/Hashtag.tsx:97 3256 + #: src/view/screens/Search/Search.tsx:519 3257 + msgid "Latest" 3258 + msgstr "" 3259 + 3260 + #: src/components/moderation/ScreenHider.tsx:140 3261 + msgid "Learn More" 3262 + msgstr "" 3263 + 3264 + #: src/view/com/auth/SplashScreen.web.tsx:165 3265 + msgid "Learn more about Bluesky" 3266 + msgstr "" 3267 + 3268 + #: src/view/com/auth/server-input/index.tsx:156 3269 + msgid "Learn more about self hosting your PDS." 3270 + msgstr "" 3271 + 3272 + #: src/components/moderation/ContentHider.tsx:66 3273 + #: src/components/moderation/ContentHider.tsx:131 3274 + msgid "Learn more about the moderation applied to this content." 3275 + msgstr "" 3276 + 3277 + #: src/components/moderation/PostHider.tsx:100 3278 + #: src/components/moderation/ScreenHider.tsx:127 3279 + msgid "Learn more about this warning" 3280 + msgstr "" 3281 + 3282 + #: src/screens/Moderation/index.tsx:584 3283 + #: src/screens/Moderation/index.tsx:586 3284 + msgid "Learn more about what is public on Bluesky." 3285 + msgstr "" 3286 + 3287 + #: src/components/moderation/ContentHider.tsx:155 3288 + #: src/view/com/auth/server-input/index.tsx:158 3289 + msgid "Learn more." 3290 + msgstr "" 3291 + 3292 + #: src/components/dms/LeaveConvoPrompt.tsx:50 3293 + msgid "Leave" 3294 + msgstr "" 3295 + 3296 + #: src/components/dms/MessagesListBlockedFooter.tsx:66 3297 + #: src/components/dms/MessagesListBlockedFooter.tsx:73 3298 + msgid "Leave chat" 3299 + msgstr "" 3300 + 3301 + #: src/components/dms/ConvoMenu.tsx:138 3302 + #: src/components/dms/ConvoMenu.tsx:141 3303 + #: src/components/dms/ConvoMenu.tsx:208 3304 + #: src/components/dms/ConvoMenu.tsx:211 3305 + #: src/components/dms/LeaveConvoPrompt.tsx:46 3306 + msgid "Leave conversation" 3307 + msgstr "" 3308 + 3309 + #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:83 3310 + msgid "Leave them all unchecked to see any language." 3311 + msgstr "" 3312 + 3313 + #: src/view/com/modals/LinkWarning.tsx:65 3314 + msgid "Leaving Bluesky" 3315 + msgstr "" 3316 + 3317 + #: src/screens/SignupQueued.tsx:134 3318 + msgid "left to go." 3319 + msgstr "" 3320 + 3321 + #: src/components/StarterPack/ProfileStarterPacks.tsx:296 3322 + msgid "Let me choose" 3323 + msgstr "" 3324 + 3325 + #: src/screens/Login/index.tsx:127 3326 + #: src/screens/Login/index.tsx:142 3327 + msgid "Let's get your password reset!" 3328 + msgstr "" 3329 + 3330 + #: src/screens/Onboarding/StepFinished.tsx:287 3331 + msgid "Let's go!" 3332 + msgstr "" 3333 + 3334 + #: src/screens/Settings/AppearanceSettings.tsx:105 3335 + msgid "Light" 3336 + msgstr "" 3337 + 3338 + #: src/components/ProgressGuide/List.tsx:48 3339 + msgid "Like 10 posts" 3340 + msgstr "" 3341 + 3342 + #: src/state/shell/progress-guide.tsx:157 3343 + #: src/state/shell/progress-guide.tsx:162 3344 + msgid "Like 10 posts to train the Discover feed" 3345 + msgstr "" 3346 + 3347 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:262 3348 + #: src/view/screens/ProfileFeed.tsx:569 3349 + msgid "Like this feed" 3350 + msgstr "" 3351 + 3352 + #: src/components/LikesDialog.tsx:85 3353 + #: src/Navigation.tsx:230 3354 + #: src/Navigation.tsx:235 3355 + msgid "Liked by" 3356 + msgstr "" 3357 + 3358 + #: src/screens/Post/PostLikedBy.tsx:31 3359 + #: src/screens/Post/PostLikedBy.tsx:32 3360 + #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 3361 + #: src/view/screens/ProfileFeedLikedBy.tsx:28 3362 + msgid "Liked By" 3363 + msgstr "" 3364 + 3365 + #: src/view/com/notifications/FeedItem.tsx:211 3366 + msgid "liked your custom feed" 3367 + msgstr "" 3368 + 3369 + #: src/view/com/notifications/FeedItem.tsx:178 3370 + msgid "liked your post" 3371 + msgstr "" 3372 + 3373 + #: src/view/screens/Profile.tsx:222 3374 + msgid "Likes" 3375 + msgstr "" 3376 + 3377 + #: src/view/com/post-thread/PostThreadItem.tsx:204 3378 + msgid "Likes on this post" 3379 + msgstr "" 3380 + 3381 + #: src/Navigation.tsx:192 3382 + msgid "List" 3383 + msgstr "" 3384 + 3385 + #: src/view/com/modals/CreateOrEditList.tsx:241 3386 + msgid "List Avatar" 3387 + msgstr "" 3388 + 3389 + #: src/view/screens/ProfileList.tsx:413 3390 + msgid "List blocked" 3391 + msgstr "" 3392 + 3393 + #: src/components/ListCard.tsx:150 3394 + #: src/view/com/feeds/FeedSourceCard.tsx:252 3395 + msgid "List by {0}" 3396 + msgstr "" 3397 + 3398 + #: src/view/screens/ProfileList.tsx:450 3399 + msgid "List deleted" 3400 + msgstr "" 3401 + 3402 + #: src/screens/List/ListHiddenScreen.tsx:126 3403 + msgid "List has been hidden" 3404 + msgstr "" 3405 + 3406 + #: src/view/screens/ProfileList.tsx:161 3407 + msgid "List Hidden" 3408 + msgstr "" 3409 + 3410 + #: src/view/screens/ProfileList.tsx:387 3411 + msgid "List muted" 3412 + msgstr "" 3413 + 3414 + #: src/view/com/modals/CreateOrEditList.tsx:255 3415 + msgid "List Name" 3416 + msgstr "" 3417 + 3418 + #: src/view/screens/ProfileList.tsx:426 3419 + msgid "List unblocked" 3420 + msgstr "" 3421 + 3422 + #: src/view/screens/ProfileList.tsx:400 3423 + msgid "List unmuted" 3424 + msgstr "" 3425 + 3426 + #: src/Navigation.tsx:129 3427 + #: src/view/screens/Profile.tsx:218 3428 + #: src/view/screens/Profile.tsx:225 3429 + #: src/view/shell/desktop/LeftNav.tsx:407 3430 + #: src/view/shell/Drawer.tsx:505 3431 + #: src/view/shell/Drawer.tsx:506 3432 + msgid "Lists" 3433 + msgstr "" 3434 + 3435 + #: src/components/dms/BlockedByListDialog.tsx:39 3436 + msgid "Lists blocking this user:" 3437 + msgstr "" 3438 + 3439 + #: src/view/screens/Search/Explore.tsx:131 3440 + msgid "Load more" 3441 + msgstr "" 3442 + 3443 + #: src/view/screens/Search/Explore.tsx:219 3444 + msgid "Load more suggested feeds" 3445 + msgstr "" 3446 + 3447 + #: src/view/screens/Search/Explore.tsx:217 3448 + msgid "Load more suggested follows" 3449 + msgstr "" 3450 + 3451 + #: src/view/screens/Notifications.tsx:216 3452 + msgid "Load new notifications" 3453 + msgstr "" 3454 + 3455 + #: src/screens/Profile/Sections/Feed.tsx:96 3456 + #: src/view/com/feeds/FeedPage.tsx:132 3457 + #: src/view/screens/ProfileFeed.tsx:492 3458 + #: src/view/screens/ProfileList.tsx:799 3459 + msgid "Load new posts" 3460 + msgstr "" 3461 + 3462 + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 3463 + msgid "Loading..." 3464 + msgstr "" 3465 + 3466 + #: src/Navigation.tsx:255 3467 + msgid "Log" 3468 + msgstr "" 3469 + 3470 + #: src/screens/Deactivated.tsx:214 3471 + #: src/screens/Deactivated.tsx:220 3472 + msgid "Log in or sign up" 3473 + msgstr "" 3474 + 3475 + #: src/screens/SignupQueued.tsx:155 3476 + #: src/screens/SignupQueued.tsx:158 3477 + #: src/screens/SignupQueued.tsx:184 3478 + #: src/screens/SignupQueued.tsx:187 3479 + msgid "Log out" 3480 + msgstr "" 3481 + 3482 + #: src/screens/Moderation/index.tsx:477 3483 + msgid "Logged-out visibility" 3484 + msgstr "" 3485 + 3486 + #: src/components/AccountList.tsx:58 3487 + msgid "Login to account that is not listed" 3488 + msgstr "" 3489 + 3490 + #: src/view/shell/desktop/RightNav.tsx:104 3491 + msgid "Logo by <0/>" 3492 + msgstr "" 3493 + 3494 + #: src/view/shell/Drawer.tsx:294 3495 + msgid "Logo by <0>@sawaratsuki.bsky.social</0>" 3496 + msgstr "" 3497 + 3498 + #: src/components/RichText.tsx:226 3499 + msgid "Long press to open tag menu for #{tag}" 3500 + msgstr "" 3501 + 3502 + #: src/screens/Login/SetNewPasswordForm.tsx:110 3503 + msgid "Looks like XXXXX-XXXXX" 3504 + msgstr "" 3505 + 3506 + #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:39 3507 + msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." 3508 + msgstr "" 3509 + 3510 + #: src/screens/Home/NoFeedsPinned.tsx:83 3511 + msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" 3512 + msgstr "" 3513 + 3514 + #: src/screens/Feeds/NoFollowingFeed.tsx:37 3515 + msgid "Looks like you're missing a following feed. <0>Click here to add one.</0>" 3516 + msgstr "" 3517 + 3518 + #: src/components/StarterPack/ProfileStarterPacks.tsx:255 3519 + msgid "Make one for me" 3520 + msgstr "" 3521 + 3522 + #: src/view/com/modals/LinkWarning.tsx:79 3523 + msgid "Make sure this is where you intend to go!" 3524 + msgstr "" 3525 + 3526 + #: src/components/dialogs/MutedWords.tsx:108 3527 + msgid "Manage your muted words and tags" 3528 + msgstr "" 3529 + 3530 + #: src/components/dms/ConvoMenu.tsx:151 3531 + #: src/components/dms/ConvoMenu.tsx:158 3532 + msgid "Mark as read" 3533 + msgstr "" 3534 + 3535 + #: src/view/screens/AccessibilitySettings.tsx:103 3536 + #: src/view/screens/Profile.tsx:221 3537 + msgid "Media" 3538 + msgstr "" 3539 + 3540 + #: src/view/com/composer/labels/LabelsBtn.tsx:235 3541 + msgid "Media that may be disturbing or inappropriate for some audiences." 3542 + msgstr "" 3543 + 3544 + #: src/components/WhoCanReply.tsx:254 3545 + msgid "mentioned users" 3546 + msgstr "" 3547 + 3548 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:394 3549 + msgid "Mentioned users" 3550 + msgstr "" 3551 + 3552 + #: src/components/Menu/index.tsx:94 3553 + #: src/view/com/util/ViewHeader.tsx:87 3554 + #: src/view/screens/Search/Search.tsx:876 3555 + msgid "Menu" 3556 + msgstr "" 3557 + 3558 + #: src/components/dms/MessageProfileButton.tsx:62 3559 + msgid "Message {0}" 3560 + msgstr "" 3561 + 3562 + #: src/components/dms/MessageMenu.tsx:72 3563 + #: src/screens/Messages/components/ChatListItem.tsx:165 3564 + msgid "Message deleted" 3565 + msgstr "" 3566 + 3567 + #: src/view/com/posts/FeedErrorMessage.tsx:201 3568 + msgid "Message from server: {0}" 3569 + msgstr "" 3570 + 3571 + #: src/screens/Messages/components/MessageInput.tsx:140 3572 + msgid "Message input field" 3573 + msgstr "" 3574 + 3575 + #: src/screens/Messages/components/MessageInput.tsx:72 3576 + #: src/screens/Messages/components/MessageInput.web.tsx:59 3577 + msgid "Message is too long" 3578 + msgstr "" 3579 + 3580 + #: src/screens/Messages/ChatList.tsx:317 3581 + msgid "Message settings" 3582 + msgstr "" 3583 + 3584 + #: src/Navigation.tsx:564 3585 + #: src/screens/Messages/ChatList.tsx:161 3586 + #: src/screens/Messages/ChatList.tsx:242 3587 + #: src/screens/Messages/ChatList.tsx:313 3588 + msgid "Messages" 3589 + msgstr "" 3590 + 3591 + #: src/lib/moderation/useReportOptions.ts:47 3592 + msgid "Misleading Account" 3593 + msgstr "" 3594 + 3595 + #: src/lib/moderation/useReportOptions.ts:67 3596 + msgid "Misleading Post" 3597 + msgstr "" 3598 + 3599 + #: src/Navigation.tsx:134 3600 + #: src/screens/Moderation/index.tsx:105 3601 + #: src/view/screens/Settings/index.tsx:527 3602 + msgid "Moderation" 3603 + msgstr "" 3604 + 3605 + #: src/components/moderation/ModerationDetailsDialog.tsx:133 3606 + msgid "Moderation details" 3607 + msgstr "" 3608 + 3609 + #: src/components/ListCard.tsx:149 3610 + #: src/view/com/modals/UserAddRemoveLists.tsx:222 3611 + msgid "Moderation list by {0}" 3612 + msgstr "" 3613 + 3614 + #: src/view/screens/ProfileList.tsx:893 3615 + msgid "Moderation list by <0/>" 3616 + msgstr "" 3617 + 3618 + #: src/view/com/modals/UserAddRemoveLists.tsx:220 3619 + #: src/view/screens/ProfileList.tsx:891 3620 + msgid "Moderation list by you" 3621 + msgstr "" 3622 + 3623 + #: src/view/com/modals/CreateOrEditList.tsx:177 3624 + msgid "Moderation list created" 3625 + msgstr "" 3626 + 3627 + #: src/view/com/modals/CreateOrEditList.tsx:163 3628 + msgid "Moderation list updated" 3629 + msgstr "" 3630 + 3631 + #: src/screens/Moderation/index.tsx:247 3632 + msgid "Moderation lists" 3633 + msgstr "" 3634 + 3635 + #: src/Navigation.tsx:139 3636 + #: src/view/screens/ModerationModlists.tsx:59 3637 + msgid "Moderation Lists" 3638 + msgstr "" 3639 + 3640 + #: src/components/moderation/LabelPreference.tsx:246 3641 + msgid "moderation settings" 3642 + msgstr "" 3643 + 3644 + #: src/view/screens/Settings/index.tsx:521 3645 + msgid "Moderation settings" 3646 + msgstr "" 3647 + 3648 + #: src/Navigation.tsx:245 3649 + msgid "Moderation states" 3650 + msgstr "" 3651 + 3652 + #: src/screens/Moderation/index.tsx:216 3653 + msgid "Moderation tools" 3654 + msgstr "" 3655 + 3656 + #: src/components/moderation/ModerationDetailsDialog.tsx:51 3657 + #: src/lib/moderation/useModerationCauseDescription.ts:45 3658 + msgid "Moderator has chosen to set a general warning on the content." 3659 + msgstr "" 3660 + 3661 + #: src/view/com/post-thread/PostThreadItem.tsx:619 3662 + msgid "More" 3663 + msgstr "" 3664 + 3665 + #: src/view/shell/desktop/Feeds.tsx:55 3666 + msgid "More feeds" 3667 + msgstr "" 3668 + 3669 + #: src/view/com/profile/ProfileMenu.tsx:179 3670 + #: src/view/screens/ProfileList.tsx:703 3671 + msgid "More options" 3672 + msgstr "" 3673 + 3674 + #: src/view/screens/PreferencesThreads.tsx:76 3675 + msgid "Most-liked replies first" 3676 + msgstr "" 3677 + 3678 + #: src/screens/Onboarding/state.ts:92 3679 + msgid "Movies" 3680 + msgstr "Films" 3681 + 3682 + #: src/screens/Onboarding/state.ts:93 3683 + msgid "Music" 3684 + msgstr "" 3685 + 3686 + #: src/components/TagMenu/index.tsx:262 3687 + msgid "Mute" 3688 + msgstr "" 3689 + 3690 + #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:157 3691 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:94 3692 + msgctxt "video" 3693 + msgid "Mute" 3694 + msgstr "" 3695 + 3696 + #: src/components/TagMenu/index.web.tsx:116 3697 + msgid "Mute {truncatedTag}" 3698 + msgstr "" 3699 + 3700 + #: src/view/com/profile/ProfileMenu.tsx:259 3701 + #: src/view/com/profile/ProfileMenu.tsx:266 3702 + msgid "Mute Account" 3703 + msgstr "" 3704 + 3705 + #: src/view/screens/ProfileList.tsx:622 3706 + msgid "Mute accounts" 3707 + msgstr "" 3708 + 3709 + #: src/components/TagMenu/index.tsx:219 3710 + msgid "Mute all {displayTag} posts" 3711 + msgstr "" 3712 + 3713 + #: src/components/dms/ConvoMenu.tsx:172 3714 + #: src/components/dms/ConvoMenu.tsx:178 3715 + msgid "Mute conversation" 3716 + msgstr "" 3717 + 3718 + #: src/components/dialogs/MutedWords.tsx:253 3719 + msgid "Mute in:" 3720 + msgstr "" 3721 + 3722 + #: src/view/screens/ProfileList.tsx:728 3723 + msgid "Mute list" 3724 + msgstr "" 3725 + 3726 + #: src/view/screens/ProfileList.tsx:723 3727 + msgid "Mute these accounts?" 3728 + msgstr "" 3729 + 3730 + #: src/components/dialogs/MutedWords.tsx:185 3731 + msgid "Mute this word for 24 hours" 3732 + msgstr "" 3733 + 3734 + #: src/components/dialogs/MutedWords.tsx:224 3735 + msgid "Mute this word for 30 days" 3736 + msgstr "" 3737 + 3738 + #: src/components/dialogs/MutedWords.tsx:209 3739 + msgid "Mute this word for 7 days" 3740 + msgstr "" 3741 + 3742 + #: src/components/dialogs/MutedWords.tsx:258 3743 + msgid "Mute this word in post text and tags" 3744 + msgstr "" 3745 + 3746 + #: src/components/dialogs/MutedWords.tsx:274 3747 + msgid "Mute this word in tags only" 3748 + msgstr "" 3749 + 3750 + #: src/components/dialogs/MutedWords.tsx:170 3751 + msgid "Mute this word until you unmute it" 3752 + msgstr "" 3753 + 3754 + #: src/view/com/util/forms/PostDropdownBtn.tsx:507 3755 + #: src/view/com/util/forms/PostDropdownBtn.tsx:513 3756 + msgid "Mute thread" 3757 + msgstr "" 3758 + 3759 + #: src/view/com/util/forms/PostDropdownBtn.tsx:523 3760 + #: src/view/com/util/forms/PostDropdownBtn.tsx:525 3761 + msgid "Mute words & tags" 3762 + msgstr "" 3763 + 3764 + #: src/screens/Moderation/index.tsx:262 3765 + msgid "Muted accounts" 3766 + msgstr "" 3767 + 3768 + #: src/Navigation.tsx:144 3769 + #: src/view/screens/ModerationMutedAccounts.tsx:106 3770 + msgid "Muted Accounts" 3771 + msgstr "" 3772 + 3773 + #: src/view/screens/ModerationMutedAccounts.tsx:114 3774 + msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." 3775 + msgstr "" 3776 + 3777 + #: src/lib/moderation/useModerationCauseDescription.ts:90 3778 + msgid "Muted by \"{0}\"" 3779 + msgstr "" 3780 + 3781 + #: src/screens/Moderation/index.tsx:232 3782 + msgid "Muted words & tags" 3783 + msgstr "" 3784 + 3785 + #: src/view/screens/ProfileList.tsx:725 3786 + msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." 3787 + msgstr "" 3788 + 3789 + #: src/components/dialogs/BirthDateSettings.tsx:34 3790 + #: src/components/dialogs/BirthDateSettings.tsx:37 3791 + msgid "My Birthday" 3792 + msgstr "" 3793 + 3794 + #: src/view/screens/Feeds.tsx:731 3795 + msgid "My Feeds" 3796 + msgstr "" 3797 + 3798 + #: src/view/shell/desktop/LeftNav.tsx:85 3799 + msgid "My Profile" 3800 + msgstr "" 3801 + 3802 + #: src/view/screens/Settings/index.tsx:582 3803 + msgid "My saved feeds" 3804 + msgstr "" 3805 + 3806 + #: src/view/screens/Settings/index.tsx:588 3807 + msgid "My Saved Feeds" 3808 + msgstr "" 3809 + 3810 + #: src/view/com/modals/AddAppPasswords.tsx:174 3811 + #: src/view/com/modals/CreateOrEditList.tsx:270 3812 + msgid "Name" 3813 + msgstr "" 3814 + 3815 + #: src/view/com/modals/CreateOrEditList.tsx:135 3816 + msgid "Name is required" 3817 + msgstr "" 3818 + 3819 + #: src/lib/moderation/useReportOptions.ts:59 3820 + #: src/lib/moderation/useReportOptions.ts:98 3821 + #: src/lib/moderation/useReportOptions.ts:106 3822 + #: src/lib/moderation/useReportOptions.ts:114 3823 + msgid "Name or Description Violates Community Standards" 3824 + msgstr "" 3825 + 3826 + #: src/screens/Onboarding/index.tsx:22 3827 + #: src/screens/Onboarding/state.ts:94 3828 + msgid "Nature" 3829 + msgstr "" 3830 + 3831 + #: src/components/StarterPack/StarterPackCard.tsx:118 3832 + msgid "Navigate to {0}" 3833 + msgstr "" 3834 + 3835 + #: src/screens/Login/ForgotPasswordForm.tsx:166 3836 + #: src/screens/Login/LoginForm.tsx:316 3837 + #: src/view/com/modals/ChangePassword.tsx:169 3838 + msgid "Navigates to the next screen" 3839 + msgstr "" 3840 + 3841 + #: src/view/shell/Drawer.tsx:78 3842 + msgid "Navigates to your profile" 3843 + msgstr "" 3844 + 3845 + #: src/components/dialogs/VerifyEmailDialog.tsx:156 3846 + msgid "Need to change it?" 3847 + msgstr "" 3848 + 3849 + #: src/components/ReportDialog/SelectReportOptionView.tsx:130 3850 + msgid "Need to report a copyright violation?" 3851 + msgstr "" 3852 + 3853 + #: src/screens/Onboarding/StepFinished.tsx:255 3854 + msgid "Never lose access to your followers or data." 3855 + msgstr "" 3856 + 3857 + #: src/view/com/modals/ChangeHandle.tsx:508 3858 + msgid "Nevermind, create a handle for me" 3859 + msgstr "" 3860 + 3861 + #: src/view/screens/Lists.tsx:83 3862 + msgctxt "action" 3863 + msgid "New" 3864 + msgstr "" 3865 + 3866 + #: src/view/screens/ModerationModlists.tsx:79 3867 + msgid "New" 3868 + msgstr "" 3869 + 3870 + #: src/components/dms/dialogs/NewChatDialog.tsx:54 3871 + #: src/screens/Messages/ChatList.tsx:327 3872 + #: src/screens/Messages/ChatList.tsx:334 3873 + msgid "New chat" 3874 + msgstr "" 3875 + 3876 + #: src/components/dialogs/nuxs/NeueTypography.tsx:51 3877 + msgid "New font settings ✨" 3878 + msgstr "" 3879 + 3880 + #: src/components/dms/NewMessagesPill.tsx:92 3881 + msgid "New messages" 3882 + msgstr "" 3883 + 3884 + #: src/view/com/modals/CreateOrEditList.tsx:232 3885 + msgid "New Moderation List" 3886 + msgstr "" 3887 + 3888 + #: src/view/com/modals/ChangePassword.tsx:213 3889 + msgid "New password" 3890 + msgstr "" 3891 + 3892 + #: src/view/com/modals/ChangePassword.tsx:218 3893 + msgid "New Password" 3894 + msgstr "" 3895 + 3896 + #: src/view/com/feeds/FeedPage.tsx:143 3897 + msgctxt "action" 3898 + msgid "New post" 3899 + msgstr "" 3900 + 3901 + #: src/view/screens/Feeds.tsx:581 3902 + #: src/view/screens/Notifications.tsx:225 3903 + #: src/view/screens/Profile.tsx:487 3904 + #: src/view/screens/ProfileFeed.tsx:426 3905 + #: src/view/screens/ProfileList.tsx:239 3906 + #: src/view/screens/ProfileList.tsx:278 3907 + #: src/view/shell/desktop/LeftNav.tsx:303 3908 + msgid "New post" 3909 + msgstr "" 3910 + 3911 + #: src/view/shell/desktop/LeftNav.tsx:311 3912 + msgctxt "action" 3913 + msgid "New Post" 3914 + msgstr "" 3915 + 3916 + #: src/components/NewskieDialog.tsx:83 3917 + msgid "New user info dialog" 3918 + msgstr "" 3919 + 3920 + #: src/view/com/modals/CreateOrEditList.tsx:227 3921 + msgid "New User List" 3922 + msgstr "" 3923 + 3924 + #: src/view/screens/PreferencesThreads.tsx:73 3925 + msgid "Newest replies first" 3926 + msgstr "" 3927 + 3928 + #: src/screens/Onboarding/index.tsx:20 3929 + #: src/screens/Onboarding/state.ts:95 3930 + msgid "News" 3931 + msgstr "" 3932 + 3933 + #: src/screens/Login/ForgotPasswordForm.tsx:137 3934 + #: src/screens/Login/ForgotPasswordForm.tsx:143 3935 + #: src/screens/Login/LoginForm.tsx:315 3936 + #: src/screens/Login/LoginForm.tsx:322 3937 + #: src/screens/Login/SetNewPasswordForm.tsx:168 3938 + #: src/screens/Login/SetNewPasswordForm.tsx:174 3939 + #: src/screens/Signup/BackNextButtons.tsx:68 3940 + #: src/screens/StarterPack/Wizard/index.tsx:183 3941 + #: src/screens/StarterPack/Wizard/index.tsx:187 3942 + #: src/screens/StarterPack/Wizard/index.tsx:358 3943 + #: src/screens/StarterPack/Wizard/index.tsx:365 3944 + #: src/view/com/modals/ChangePassword.tsx:254 3945 + #: src/view/com/modals/ChangePassword.tsx:256 3946 + msgid "Next" 3947 + msgstr "" 3948 + 3949 + #: src/view/com/lightbox/Lightbox.web.tsx:169 3950 + msgid "Next image" 3951 + msgstr "" 3952 + 3953 + #: src/view/screens/PreferencesFollowingFeed.tsx:70 3954 + #: src/view/screens/PreferencesFollowingFeed.tsx:96 3955 + #: src/view/screens/PreferencesFollowingFeed.tsx:131 3956 + #: src/view/screens/PreferencesFollowingFeed.tsx:168 3957 + #: src/view/screens/PreferencesThreads.tsx:100 3958 + #: src/view/screens/PreferencesThreads.tsx:123 3959 + msgid "No" 3960 + msgstr "" 3961 + 3962 + #: src/view/screens/ProfileFeed.tsx:558 3963 + #: src/view/screens/ProfileList.tsx:873 3964 + msgid "No description" 3965 + msgstr "" 3966 + 3967 + #: src/view/com/modals/ChangeHandle.tsx:392 3968 + msgid "No DNS Panel" 3969 + msgstr "" 3970 + 3971 + #: src/components/dialogs/GifSelect.tsx:230 3972 + msgid "No featured GIFs found. There may be an issue with Tenor." 3973 + msgstr "" 3974 + 3975 + #: src/screens/StarterPack/Wizard/StepFeeds.tsx:118 3976 + msgid "No feeds found. Try searching for something else." 3977 + msgstr "" 3978 + 3979 + #: src/components/LikedByList.tsx:78 3980 + #: src/view/com/post-thread/PostLikedBy.tsx:85 3981 + msgid "No likes yet" 3982 + msgstr "" 3983 + 3984 + #: src/components/ProfileCard.tsx:338 3985 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:111 3986 + msgid "No longer following {0}" 3987 + msgstr "" 3988 + 3989 + #: src/screens/Signup/StepHandle.tsx:169 3990 + msgid "No longer than 253 characters" 3991 + msgstr "" 3992 + 3993 + #: src/screens/Messages/components/ChatListItem.tsx:116 3994 + msgid "No messages yet" 3995 + msgstr "" 3996 + 3997 + #: src/screens/Messages/ChatList.tsx:270 3998 + msgid "No more conversations to show" 3999 + msgstr "" 4000 + 4001 + #: src/view/com/notifications/Feed.tsx:121 4002 + msgid "No notifications yet!" 4003 + msgstr "" 4004 + 4005 + #: src/screens/Messages/Settings.tsx:93 4006 + #: src/screens/Messages/Settings.tsx:96 4007 + msgid "No one" 4008 + msgstr "" 4009 + 4010 + #: src/components/WhoCanReply.tsx:237 4011 + msgid "No one but the author can quote this post." 4012 + msgstr "" 4013 + 4014 + #: src/screens/Profile/Sections/Feed.tsx:65 4015 + msgid "No posts yet." 4016 + msgstr "" 4017 + 4018 + #: src/view/com/post-thread/PostQuotes.tsx:106 4019 + msgid "No quotes yet" 4020 + msgstr "" 4021 + 4022 + #: src/view/com/post-thread/PostRepostedBy.tsx:78 4023 + msgid "No reposts yet" 4024 + msgstr "" 4025 + 4026 + #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:111 4027 + #: src/view/com/composer/text-input/web/Autocomplete.tsx:196 4028 + msgid "No result" 4029 + msgstr "" 4030 + 4031 + #: src/components/dms/dialogs/SearchablePeopleList.tsx:199 4032 + msgid "No results" 4033 + msgstr "" 4034 + 4035 + #: src/components/Lists.tsx:215 4036 + msgid "No results found" 4037 + msgstr "" 4038 + 4039 + #: src/view/screens/Feeds.tsx:512 4040 + msgid "No results found for \"{query}\"" 4041 + msgstr "" 4042 + 4043 + #: src/view/com/modals/ListAddRemoveUsers.tsx:128 4044 + #: src/view/screens/Search/Search.tsx:238 4045 + #: src/view/screens/Search/Search.tsx:277 4046 + #: src/view/screens/Search/Search.tsx:323 4047 + msgid "No results found for {query}" 4048 + msgstr "" 4049 + 4050 + #: src/components/dialogs/GifSelect.tsx:228 4051 + msgid "No search results found for \"{search}\"." 4052 + msgstr "" 4053 + 4054 + #: src/view/com/composer/labels/LabelsBtn.tsx:129 4055 + msgid "No self-labels can be applied to this post because it contains no media." 4056 + msgstr "" 4057 + 4058 + #: src/components/dialogs/EmbedConsent.tsx:104 4059 + #: src/components/dialogs/EmbedConsent.tsx:111 4060 + msgid "No thanks" 4061 + msgstr "" 4062 + 4063 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:376 4064 + msgid "Nobody" 4065 + msgstr "" 4066 + 4067 + #: src/components/LikedByList.tsx:80 4068 + #: src/components/LikesDialog.tsx:97 4069 + #: src/view/com/post-thread/PostLikedBy.tsx:87 4070 + msgid "Nobody has liked this yet. Maybe you should be the first!" 4071 + msgstr "" 4072 + 4073 + #: src/view/com/post-thread/PostQuotes.tsx:108 4074 + msgid "Nobody has quoted this yet. Maybe you should be the first!" 4075 + msgstr "" 4076 + 4077 + #: src/view/com/post-thread/PostRepostedBy.tsx:80 4078 + msgid "Nobody has reposted this yet. Maybe you should be the first!" 4079 + msgstr "" 4080 + 4081 + #: src/screens/StarterPack/Wizard/StepProfiles.tsx:102 4082 + msgid "Nobody was found. Try searching for someone else." 4083 + msgstr "" 4084 + 4085 + #: src/lib/moderation/useGlobalLabelStrings.ts:42 4086 + msgid "Non-sexual Nudity" 4087 + msgstr "" 4088 + 4089 + #: src/Navigation.tsx:124 4090 + #: src/view/screens/Profile.tsx:119 4091 + msgid "Not Found" 4092 + msgstr "" 4093 + 4094 + #: src/view/com/modals/VerifyEmail.tsx:254 4095 + #: src/view/com/modals/VerifyEmail.tsx:260 4096 + msgid "Not right now" 4097 + msgstr "" 4098 + 4099 + #: src/view/com/profile/ProfileMenu.tsx:348 4100 + #: src/view/com/util/forms/PostDropdownBtn.tsx:698 4101 + #: src/view/com/util/post-ctrls/PostCtrls.tsx:356 4102 + msgid "Note about sharing" 4103 + msgstr "" 4104 + 4105 + #: src/screens/Moderation/index.tsx:575 4106 + msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." 4107 + msgstr "" 4108 + 4109 + #: src/screens/Messages/ChatList.tsx:212 4110 + msgid "Nothing here" 4111 + msgstr "" 4112 + 4113 + #: src/view/screens/NotificationsSettings.tsx:54 4114 + msgid "Notification filters" 4115 + msgstr "" 4116 + 4117 + #: src/Navigation.tsx:347 4118 + #: src/view/screens/Notifications.tsx:116 4119 + msgid "Notification settings" 4120 + msgstr "" 4121 + 4122 + #: src/view/screens/NotificationsSettings.tsx:39 4123 + msgid "Notification Settings" 4124 + msgstr "" 4125 + 4126 + #: src/screens/Messages/Settings.tsx:124 4127 + msgid "Notification sounds" 4128 + msgstr "" 4129 + 4130 + #: src/screens/Messages/Settings.tsx:121 4131 + msgid "Notification Sounds" 4132 + msgstr "" 4133 + 4134 + #: src/Navigation.tsx:559 4135 + #: src/view/screens/Notifications.tsx:142 4136 + #: src/view/screens/Notifications.tsx:152 4137 + #: src/view/screens/Notifications.tsx:200 4138 + #: src/view/shell/bottom-bar/BottomBar.tsx:226 4139 + #: src/view/shell/desktop/LeftNav.tsx:384 4140 + #: src/view/shell/Drawer.tsx:453 4141 + #: src/view/shell/Drawer.tsx:454 4142 + msgid "Notifications" 4143 + msgstr "" 4144 + 4145 + #: src/lib/hooks/useTimeAgo.ts:122 4146 + msgid "now" 4147 + msgstr "" 4148 + 4149 + #: src/components/dms/MessageItem.tsx:197 4150 + msgid "Now" 4151 + msgstr "" 4152 + 4153 + #: src/view/com/modals/SelfLabel.tsx:104 4154 + msgid "Nudity" 4155 + msgstr "" 4156 + 4157 + #: src/lib/moderation/useReportOptions.ts:78 4158 + msgid "Nudity or adult content not labeled as such" 4159 + msgstr "Nudity or adult content not labelled as such" 4160 + 4161 + #: src/lib/moderation/useLabelBehaviorDescription.ts:11 4162 + msgid "Off" 4163 + msgstr "" 4164 + 4165 + #: src/components/dialogs/GifSelect.tsx:269 4166 + #: src/view/com/util/ErrorBoundary.tsx:55 4167 + msgid "Oh no!" 4168 + msgstr "" 4169 + 4170 + #: src/screens/Onboarding/StepInterests/index.tsx:124 4171 + msgid "Oh no! Something went wrong." 4172 + msgstr "" 4173 + 4174 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:334 4175 + msgid "OK" 4176 + msgstr "" 4177 + 4178 + #: src/screens/Login/PasswordUpdatedForm.tsx:38 4179 + msgid "Okay" 4180 + msgstr "" 4181 + 4182 + #: src/view/screens/PreferencesThreads.tsx:72 4183 + msgid "Oldest replies first" 4184 + msgstr "" 4185 + 4186 + #: src/components/StarterPack/QrCode.tsx:75 4187 + msgid "on<0><1/><2><3/></2></0>" 4188 + msgstr "" 4189 + 4190 + #: src/view/screens/Settings/index.tsx:226 4191 + msgid "Onboarding reset" 4192 + msgstr "" 4193 + 4194 + #: src/view/com/composer/Composer.tsx:619 4195 + msgid "One or more images is missing alt text." 4196 + msgstr "" 4197 + 4198 + #: src/screens/Onboarding/StepProfile/index.tsx:115 4199 + msgid "Only .jpg and .png files are supported" 4200 + msgstr "" 4201 + 4202 + #: src/components/WhoCanReply.tsx:217 4203 + msgid "Only {0} can reply." 4204 + msgstr "" 4205 + 4206 + #: src/screens/Signup/StepHandle.tsx:152 4207 + msgid "Only contains letters, numbers, and hyphens" 4208 + msgstr "" 4209 + 4210 + #: src/lib/media/picker.shared.ts:29 4211 + msgid "Only image files are supported" 4212 + msgstr "" 4213 + 4214 + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:40 4215 + msgid "Only WebVTT (.vtt) files are supported" 4216 + msgstr "" 4217 + 4218 + #: src/components/Lists.tsx:88 4219 + msgid "Oops, something went wrong!" 4220 + msgstr "" 4221 + 4222 + #: src/components/Lists.tsx:199 4223 + #: src/components/StarterPack/ProfileStarterPacks.tsx:305 4224 + #: src/components/StarterPack/ProfileStarterPacks.tsx:314 4225 + #: src/view/screens/AppPasswords.tsx:65 4226 + #: src/view/screens/NotificationsSettings.tsx:45 4227 + #: src/view/screens/Profile.tsx:119 4228 + msgid "Oops!" 4229 + msgstr "" 4230 + 4231 + #: src/screens/Onboarding/StepFinished.tsx:251 4232 + msgid "Open" 4233 + msgstr "" 4234 + 4235 + #: src/view/com/posts/AviFollowButton.tsx:86 4236 + msgid "Open {name} profile shortcut menu" 4237 + msgstr "" 4238 + 4239 + #: src/screens/Onboarding/StepProfile/index.tsx:286 4240 + msgid "Open avatar creator" 4241 + msgstr "" 4242 + 4243 + #: src/screens/Messages/components/ChatListItem.tsx:272 4244 + #: src/screens/Messages/components/ChatListItem.tsx:273 4245 + msgid "Open conversation options" 4246 + msgstr "" 4247 + 4248 + #: src/screens/Messages/components/MessageInput.web.tsx:165 4249 + #: src/view/com/composer/Composer.tsx:820 4250 + #: src/view/com/composer/Composer.tsx:821 4251 + msgid "Open emoji picker" 4252 + msgstr "" 4253 + 4254 + #: src/view/screens/ProfileFeed.tsx:294 4255 + msgid "Open feed options menu" 4256 + msgstr "" 4257 + 4258 + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:78 4259 + msgid "Open link to {niceUrl}" 4260 + msgstr "" 4261 + 4262 + #: src/view/screens/Settings/index.tsx:702 4263 + msgid "Open links with in-app browser" 4264 + msgstr "" 4265 + 4266 + #: src/components/dms/ActionsWrapper.tsx:87 4267 + msgid "Open message options" 4268 + msgstr "" 4269 + 4270 + #: src/screens/Moderation/index.tsx:228 4271 + msgid "Open muted words and tags settings" 4272 + msgstr "" 4273 + 4274 + #: src/view/com/home/HomeHeaderLayoutMobile.tsx:54 4275 + msgid "Open navigation" 4276 + msgstr "" 4277 + 4278 + #: src/view/com/util/forms/PostDropdownBtn.tsx:365 4279 + msgid "Open post options menu" 4280 + msgstr "" 4281 + 4282 + #: src/screens/StarterPack/StarterPackScreen.tsx:540 4283 + msgid "Open starter pack menu" 4284 + msgstr "" 4285 + 4286 + #: src/view/screens/Settings/index.tsx:826 4287 + #: src/view/screens/Settings/index.tsx:836 4288 + msgid "Open storybook page" 4289 + msgstr "" 4290 + 4291 + #: src/view/screens/Settings/index.tsx:814 4292 + msgid "Open system log" 4293 + msgstr "" 4294 + 4295 + #: src/view/com/util/forms/DropdownButton.tsx:159 4296 + msgid "Opens {numItems} options" 4297 + msgstr "" 4298 + 4299 + #: src/view/com/composer/labels/LabelsBtn.tsx:65 4300 + msgid "Opens a dialog to add a content warning to your post" 4301 + msgstr "" 4302 + 4303 + #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:65 4304 + msgid "Opens a dialog to choose who can reply to this thread" 4305 + msgstr "" 4306 + 4307 + #: src/view/screens/Settings/index.tsx:455 4308 + msgid "Opens accessibility settings" 4309 + msgstr "" 4310 + 4311 + #: src/view/screens/Log.tsx:58 4312 + msgid "Opens additional details for a debug entry" 4313 + msgstr "" 4314 + 4315 + #: src/view/screens/Settings/index.tsx:476 4316 + msgid "Opens appearance settings" 4317 + msgstr "" 4318 + 4319 + #: src/view/com/composer/photos/OpenCameraBtn.tsx:73 4320 + msgid "Opens camera on device" 4321 + msgstr "" 4322 + 4323 + #: src/view/screens/Settings/index.tsx:605 4324 + msgid "Opens chat settings" 4325 + msgstr "" 4326 + 4327 + #: src/view/com/post-thread/PostThreadComposePrompt.tsx:48 4328 + msgid "Opens composer" 4329 + msgstr "" 4330 + 4331 + #: src/view/screens/Settings/index.tsx:497 4332 + msgid "Opens configurable language settings" 4333 + msgstr "" 4334 + 4335 + #: src/view/com/composer/photos/SelectPhotoBtn.tsx:51 4336 + msgid "Opens device photo gallery" 4337 + msgstr "" 4338 + 4339 + #: src/view/screens/Settings/index.tsx:637 4340 + msgid "Opens external embeds settings" 4341 + msgstr "" 4342 + 4343 + #: src/view/com/auth/SplashScreen.tsx:50 4344 + #: src/view/com/auth/SplashScreen.web.tsx:110 4345 + msgid "Opens flow to create a new Bluesky account" 4346 + msgstr "" 4347 + 4348 + #: src/view/com/auth/SplashScreen.tsx:64 4349 + #: src/view/com/auth/SplashScreen.web.tsx:124 4350 + msgid "Opens flow to sign into your existing Bluesky account" 4351 + msgstr "" 4352 + 4353 + #: src/view/com/composer/photos/SelectGifBtn.tsx:36 4354 + msgid "Opens GIF select dialog" 4355 + msgstr "" 4356 + 4357 + #: src/view/com/modals/InviteCodes.tsx:173 4358 + msgid "Opens list of invite codes" 4359 + msgstr "" 4360 + 4361 + #: src/view/screens/Settings/index.tsx:774 4362 + msgid "Opens modal for account deactivation confirmation" 4363 + msgstr "" 4364 + 4365 + #: src/view/screens/Settings/index.tsx:796 4366 + msgid "Opens modal for account deletion confirmation. Requires email code" 4367 + msgstr "" 4368 + 4369 + #: src/view/screens/Settings/index.tsx:731 4370 + msgid "Opens modal for changing your Bluesky password" 4371 + msgstr "" 4372 + 4373 + #: src/view/screens/Settings/index.tsx:686 4374 + msgid "Opens modal for choosing a new Bluesky handle" 4375 + msgstr "" 4376 + 4377 + #: src/view/screens/Settings/index.tsx:754 4378 + msgid "Opens modal for downloading your Bluesky account data (repository)" 4379 + msgstr "" 4380 + 4381 + #: src/view/screens/Settings/index.tsx:962 4382 + msgid "Opens modal for email verification" 4383 + msgstr "" 4384 + 4385 + #: src/view/com/modals/ChangeHandle.tsx:269 4386 + msgid "Opens modal for using custom domain" 4387 + msgstr "" 4388 + 4389 + #: src/view/screens/Settings/index.tsx:522 4390 + msgid "Opens moderation settings" 4391 + msgstr "" 4392 + 4393 + #: src/screens/Login/LoginForm.tsx:231 4394 + msgid "Opens password reset form" 4395 + msgstr "" 4396 + 4397 + #: src/view/screens/Settings/index.tsx:583 4398 + msgid "Opens screen with all saved feeds" 4399 + msgstr "" 4400 + 4401 + #: src/view/screens/Settings/index.tsx:664 4402 + msgid "Opens the app password settings" 4403 + msgstr "" 4404 + 4405 + #: src/view/screens/Settings/index.tsx:540 4406 + msgid "Opens the Following feed preferences" 4407 + msgstr "" 4408 + 4409 + #: src/view/com/modals/LinkWarning.tsx:93 4410 + msgid "Opens the linked website" 4411 + msgstr "" 4412 + 4413 + #: src/view/screens/Settings/index.tsx:827 4414 + #: src/view/screens/Settings/index.tsx:837 4415 + msgid "Opens the storybook page" 4416 + msgstr "" 4417 + 4418 + #: src/view/screens/Settings/index.tsx:815 4419 + msgid "Opens the system log page" 4420 + msgstr "" 4421 + 4422 + #: src/view/screens/Settings/index.tsx:561 4423 + msgid "Opens the threads preferences" 4424 + msgstr "" 4425 + 4426 + #: src/view/com/notifications/FeedItem.tsx:555 4427 + #: src/view/com/util/UserAvatar.tsx:436 4428 + msgid "Opens this profile" 4429 + msgstr "" 4430 + 4431 + #: src/view/com/composer/videos/SelectVideoBtn.tsx:107 4432 + msgid "Opens video picker" 4433 + msgstr "" 4434 + 4435 + #: src/view/com/util/forms/DropdownButton.tsx:293 4436 + msgid "Option {0} of {numItems}" 4437 + msgstr "" 4438 + 4439 + #: src/components/dms/ReportDialog.tsx:178 4440 + #: src/components/ReportDialog/SubmitView.tsx:167 4441 + msgid "Optionally provide additional information below:" 4442 + msgstr "" 4443 + 4444 + #: src/components/dialogs/MutedWords.tsx:299 4445 + msgid "Options:" 4446 + msgstr "" 4447 + 4448 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:389 4449 + msgid "Or combine these options:" 4450 + msgstr "" 4451 + 4452 + #: src/screens/Deactivated.tsx:211 4453 + msgid "Or, continue with another account." 4454 + msgstr "" 4455 + 4456 + #: src/screens/Deactivated.tsx:194 4457 + msgid "Or, log into one of your other accounts." 4458 + msgstr "" 4459 + 4460 + #: src/lib/moderation/useReportOptions.ts:27 4461 + msgid "Other" 4462 + msgstr "" 4463 + 4464 + #: src/components/AccountList.tsx:76 4465 + msgid "Other account" 4466 + msgstr "" 4467 + 4468 + #: src/view/screens/Settings/index.tsx:379 4469 + msgid "Other accounts" 4470 + msgstr "" 4471 + 4472 + #: src/view/com/composer/select-language/SelectLangBtn.tsx:92 4473 + msgid "Other..." 4474 + msgstr "" 4475 + 4476 + #: src/screens/Messages/components/ChatDisabled.tsx:28 4477 + msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." 4478 + msgstr "" 4479 + 4480 + #: src/components/Lists.tsx:216 4481 + #: src/view/screens/NotFound.tsx:45 4482 + msgid "Page not found" 4483 + msgstr "" 4484 + 4485 + #: src/view/screens/NotFound.tsx:42 4486 + msgid "Page Not Found" 4487 + msgstr "" 4488 + 4489 + #: src/screens/Login/LoginForm.tsx:210 4490 + #: src/screens/Signup/StepInfo/index.tsx:192 4491 + #: src/view/com/modals/DeleteAccount.tsx:257 4492 + #: src/view/com/modals/DeleteAccount.tsx:264 4493 + msgid "Password" 4494 + msgstr "" 4495 + 4496 + #: src/view/com/modals/ChangePassword.tsx:143 4497 + msgid "Password Changed" 4498 + msgstr "" 4499 + 4500 + #: src/screens/Login/index.tsx:154 4501 + msgid "Password updated" 4502 + msgstr "" 4503 + 4504 + #: src/screens/Login/PasswordUpdatedForm.tsx:24 4505 + msgid "Password updated!" 4506 + msgstr "" 4507 + 4508 + #: src/view/com/util/post-embeds/GifEmbed.tsx:44 4509 + #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 4510 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:371 4511 + msgid "Pause" 4512 + msgstr "" 4513 + 4514 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:323 4515 + msgid "Pause video" 4516 + msgstr "" 4517 + 4518 + #: src/screens/StarterPack/StarterPackScreen.tsx:171 4519 + #: src/view/screens/Search/Search.tsx:529 4520 + msgid "People" 4521 + msgstr "" 4522 + 4523 + #: src/Navigation.tsx:179 4524 + msgid "People followed by @{0}" 4525 + msgstr "" 4526 + 4527 + #: src/Navigation.tsx:172 4528 + msgid "People following @{0}" 4529 + msgstr "" 4530 + 4531 + #: src/view/com/lightbox/Lightbox.tsx:77 4532 + msgid "Permission to access camera roll is required." 4533 + msgstr "" 4534 + 4535 + #: src/view/com/lightbox/Lightbox.tsx:85 4536 + msgid "Permission to access camera roll was denied. Please enable it in your system settings." 4537 + msgstr "" 4538 + 4539 + #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 4540 + msgid "Person toggle" 4541 + msgstr "" 4542 + 4543 + #: src/screens/Onboarding/index.tsx:28 4544 + #: src/screens/Onboarding/state.ts:96 4545 + msgid "Pets" 4546 + msgstr "" 4547 + 4548 + #: src/screens/Onboarding/state.ts:97 4549 + msgid "Photography" 4550 + msgstr "" 4551 + 4552 + #: src/view/com/modals/SelfLabel.tsx:122 4553 + msgid "Pictures meant for adults." 4554 + msgstr "" 4555 + 4556 + #: src/view/screens/ProfileFeed.tsx:286 4557 + #: src/view/screens/ProfileList.tsx:667 4558 + msgid "Pin to home" 4559 + msgstr "" 4560 + 4561 + #: src/view/screens/ProfileFeed.tsx:289 4562 + msgid "Pin to Home" 4563 + msgstr "" 4564 + 4565 + #: src/view/com/util/forms/PostDropdownBtn.tsx:398 4566 + #: src/view/com/util/forms/PostDropdownBtn.tsx:405 4567 + msgid "Pin to your profile" 4568 + msgstr "" 4569 + 4570 + #: src/view/com/posts/FeedItem.tsx:354 4571 + msgid "Pinned" 4572 + msgstr "" 4573 + 4574 + #: src/view/screens/SavedFeeds.tsx:131 4575 + msgid "Pinned Feeds" 4576 + msgstr "" 4577 + 4578 + #: src/view/screens/ProfileList.tsx:346 4579 + msgid "Pinned to your feeds" 4580 + msgstr "" 4581 + 4582 + #: src/view/com/util/post-embeds/GifEmbed.tsx:44 4583 + #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:141 4584 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:372 4585 + msgid "Play" 4586 + msgstr "" 4587 + 4588 + #: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:131 4589 + msgid "Play {0}" 4590 + msgstr "" 4591 + 4592 + #: src/view/com/util/post-embeds/GifEmbed.tsx:43 4593 + msgid "Play or pause the GIF" 4594 + msgstr "" 4595 + 4596 + #: src/view/com/util/post-embeds/VideoEmbed.tsx:110 4597 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:324 4598 + msgid "Play video" 4599 + msgstr "" 4600 + 4601 + #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:59 4602 + #: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:60 4603 + msgid "Play Video" 4604 + msgstr "" 4605 + 4606 + #: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:130 4607 + msgid "Plays the GIF" 4608 + msgstr "" 4609 + 4610 + #: src/screens/Signup/state.ts:217 4611 + msgid "Please choose your handle." 4612 + msgstr "" 4613 + 4614 + #: src/screens/Signup/state.ts:210 4615 + #: src/screens/Signup/StepInfo/index.tsx:114 4616 + msgid "Please choose your password." 4617 + msgstr "" 4618 + 4619 + #: src/screens/Signup/state.ts:231 4620 + msgid "Please complete the verification captcha." 4621 + msgstr "" 4622 + 4623 + #: src/view/com/modals/ChangeEmail.tsx:65 4624 + msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." 4625 + msgstr "" 4626 + 4627 + #: src/view/com/modals/AddAppPasswords.tsx:94 4628 + msgid "Please enter a name for your app password. All spaces is not allowed." 4629 + msgstr "" 4630 + 4631 + #: src/view/com/modals/AddAppPasswords.tsx:151 4632 + msgid "Please enter a unique name for this App Password or use our randomly generated one." 4633 + msgstr "" 4634 + 4635 + #: src/components/dialogs/MutedWords.tsx:86 4636 + msgid "Please enter a valid word, tag, or phrase to mute" 4637 + msgstr "" 4638 + 4639 + #: src/screens/Signup/state.ts:196 4640 + #: src/screens/Signup/StepInfo/index.tsx:102 4641 + msgid "Please enter your email." 4642 + msgstr "" 4643 + 4644 + #: src/screens/Signup/StepInfo/index.tsx:96 4645 + msgid "Please enter your invite code." 4646 + msgstr "" 4647 + 4648 + #: src/view/com/modals/DeleteAccount.tsx:253 4649 + msgid "Please enter your password as well:" 4650 + msgstr "" 4651 + 4652 + #: src/components/moderation/LabelsOnMeDialog.tsx:265 4653 + msgid "Please explain why you think this label was incorrectly applied by {0}" 4654 + msgstr "" 4655 + 4656 + #: src/screens/Messages/components/ChatDisabled.tsx:110 4657 + msgid "Please explain why you think your chats were incorrectly disabled" 4658 + msgstr "" 4659 + 4660 + #: src/lib/hooks/useAccountSwitcher.ts:45 4661 + #: src/lib/hooks/useAccountSwitcher.ts:55 4662 + msgid "Please sign in as @{0}" 4663 + msgstr "" 4664 + 4665 + #: src/view/com/modals/VerifyEmail.tsx:109 4666 + msgid "Please Verify Your Email" 4667 + msgstr "" 4668 + 4669 + #: src/screens/Onboarding/index.tsx:34 4670 + #: src/screens/Onboarding/state.ts:98 4671 + msgid "Politics" 4672 + msgstr "" 4673 + 4674 + #: src/view/com/modals/SelfLabel.tsx:112 4675 + msgid "Porn" 4676 + msgstr "" 4677 + 4678 + #: src/view/com/composer/Composer.tsx:594 4679 + #: src/view/com/composer/Composer.tsx:601 4680 + msgctxt "action" 4681 + msgid "Post" 4682 + msgstr "" 4683 + 4684 + #: src/view/com/post-thread/PostThread.tsx:481 4685 + msgctxt "description" 4686 + msgid "Post" 4687 + msgstr "" 4688 + 4689 + #: src/view/com/post-thread/PostThreadItem.tsx:196 4690 + msgid "Post by {0}" 4691 + msgstr "" 4692 + 4693 + #: src/Navigation.tsx:198 4694 + #: src/Navigation.tsx:205 4695 + #: src/Navigation.tsx:212 4696 + #: src/Navigation.tsx:219 4697 + msgid "Post by @{0}" 4698 + msgstr "" 4699 + 4700 + #: src/view/com/util/forms/PostDropdownBtn.tsx:180 4701 + msgid "Post deleted" 4702 + msgstr "" 4703 + 4704 + #: src/lib/api/index.ts:121 4705 + msgid "Post failed to upload. Please check your Internet connection and try again." 4706 + msgstr "" 4707 + 4708 + #: src/view/com/post-thread/PostThread.tsx:212 4709 + msgid "Post hidden" 4710 + msgstr "" 4711 + 4712 + #: src/components/moderation/ModerationDetailsDialog.tsx:106 4713 + #: src/lib/moderation/useModerationCauseDescription.ts:104 4714 + msgid "Post Hidden by Muted Word" 4715 + msgstr "" 4716 + 4717 + #: src/components/moderation/ModerationDetailsDialog.tsx:109 4718 + #: src/lib/moderation/useModerationCauseDescription.ts:113 4719 + msgid "Post Hidden by You" 4720 + msgstr "" 4721 + 4722 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:284 4723 + msgid "Post interaction settings" 4724 + msgstr "" 4725 + 4726 + #: src/view/com/composer/select-language/SelectLangBtn.tsx:88 4727 + msgid "Post language" 4728 + msgstr "" 4729 + 4730 + #: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:76 4731 + msgid "Post Languages" 4732 + msgstr "" 4733 + 4734 + #: src/view/com/post-thread/PostThread.tsx:207 4735 + #: src/view/com/post-thread/PostThread.tsx:219 4736 + msgid "Post not found" 4737 + msgstr "" 4738 + 4739 + #: src/state/queries/pinned-post.ts:59 4740 + msgid "Post pinned" 4741 + msgstr "" 4742 + 4743 + #: src/state/queries/pinned-post.ts:61 4744 + msgid "Post unpinned" 4745 + msgstr "" 4746 + 4747 + #: src/lib/api/index.ts:106 4748 + msgid "Posting..." 4749 + msgstr "" 4750 + 4751 + #: src/components/TagMenu/index.tsx:266 4752 + msgid "posts" 4753 + msgstr "" 4754 + 4755 + #: src/screens/StarterPack/StarterPackScreen.tsx:173 4756 + #: src/view/screens/Profile.tsx:219 4757 + msgid "Posts" 4758 + msgstr "" 4759 + 4760 + #: src/components/dialogs/MutedWords.tsx:115 4761 + msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." 4762 + msgstr "" 4763 + 4764 + #: src/view/com/posts/FeedErrorMessage.tsx:68 4765 + msgid "Posts hidden" 4766 + msgstr "" 4767 + 4768 + #: src/view/com/modals/LinkWarning.tsx:60 4769 + msgid "Potentially Misleading Link" 4770 + msgstr "" 4771 + 4772 + #: src/state/queries/notifications/settings.ts:44 4773 + msgid "Preference saved" 4774 + msgstr "" 4775 + 4776 + #: src/screens/Messages/components/MessageListError.tsx:19 4777 + msgid "Press to attempt reconnection" 4778 + msgstr "" 4779 + 4780 + #: src/components/forms/HostingProvider.tsx:46 4781 + msgid "Press to change hosting provider" 4782 + msgstr "" 4783 + 4784 + #: src/components/Error.tsx:61 4785 + #: src/components/Lists.tsx:93 4786 + #: src/screens/Messages/components/MessageListError.tsx:24 4787 + #: src/screens/Signup/BackNextButtons.tsx:48 4788 + msgid "Press to retry" 4789 + msgstr "" 4790 + 4791 + #: src/components/KnownFollowers.tsx:124 4792 + msgid "Press to view followers of this account that you also follow" 4793 + msgstr "" 4794 + 4795 + #: src/view/com/lightbox/Lightbox.web.tsx:150 4796 + msgid "Previous image" 4797 + msgstr "" 4798 + 4799 + #: src/view/screens/LanguageSettings.tsx:186 4800 + msgid "Primary Language" 4801 + msgstr "" 4802 + 4803 + #: src/view/screens/PreferencesThreads.tsx:91 4804 + msgid "Prioritize Your Follows" 4805 + msgstr "Prioritise Your Follows" 4806 + 4807 + #: src/view/screens/NotificationsSettings.tsx:57 4808 + msgid "Priority notifications" 4809 + msgstr "" 4810 + 4811 + #: src/view/screens/Settings/index.tsx:620 4812 + #: src/view/shell/desktop/RightNav.tsx:81 4813 + msgid "Privacy" 4814 + msgstr "" 4815 + 4816 + #: src/Navigation.tsx:265 4817 + #: src/view/screens/PrivacyPolicy.tsx:29 4818 + #: src/view/screens/Settings/index.tsx:911 4819 + #: src/view/shell/Drawer.tsx:290 4820 + msgid "Privacy Policy" 4821 + msgstr "" 4822 + 4823 + #: src/view/com/composer/Composer.tsx:1173 4824 + msgid "Processing video..." 4825 + msgstr "" 4826 + 4827 + #: src/screens/Login/ForgotPasswordForm.tsx:149 4828 + msgid "Processing..." 4829 + msgstr "" 4830 + 4831 + #: src/view/screens/DebugMod.tsx:896 4832 + #: src/view/screens/Profile.tsx:354 4833 + msgid "profile" 4834 + msgstr "" 4835 + 4836 + #: src/view/shell/bottom-bar/BottomBar.tsx:271 4837 + #: src/view/shell/desktop/LeftNav.tsx:415 4838 + #: src/view/shell/Drawer.tsx:77 4839 + #: src/view/shell/Drawer.tsx:538 4840 + #: src/view/shell/Drawer.tsx:539 4841 + msgid "Profile" 4842 + msgstr "" 4843 + 4844 + #: src/view/com/modals/EditProfile.tsx:124 4845 + msgid "Profile updated" 4846 + msgstr "" 4847 + 4848 + #: src/view/screens/Settings/index.tsx:975 4849 + msgid "Protect your account by verifying your email." 4850 + msgstr "" 4851 + 4852 + #: src/screens/Onboarding/StepFinished.tsx:237 4853 + msgid "Public" 4854 + msgstr "" 4855 + 4856 + #: src/view/screens/ModerationModlists.tsx:62 4857 + msgid "Public, shareable lists of users to mute or block in bulk." 4858 + msgstr "" 4859 + 4860 + #: src/view/screens/Lists.tsx:68 4861 + msgid "Public, shareable lists which can drive feeds." 4862 + msgstr "" 4863 + 4864 + #: src/view/com/composer/Composer.tsx:579 4865 + msgid "Publish post" 4866 + msgstr "" 4867 + 4868 + #: src/view/com/composer/Composer.tsx:579 4869 + msgid "Publish reply" 4870 + msgstr "" 4871 + 4872 + #: src/components/StarterPack/QrCodeDialog.tsx:128 4873 + msgid "QR code copied to your clipboard!" 4874 + msgstr "" 4875 + 4876 + #: src/components/StarterPack/QrCodeDialog.tsx:106 4877 + msgid "QR code has been downloaded!" 4878 + msgstr "" 4879 + 4880 + #: src/components/StarterPack/QrCodeDialog.tsx:107 4881 + msgid "QR code saved to your camera roll!" 4882 + msgstr "" 4883 + 4884 + #: src/view/com/util/post-ctrls/RepostButton.tsx:127 4885 + #: src/view/com/util/post-ctrls/RepostButton.tsx:154 4886 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:85 4887 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:92 4888 + msgid "Quote post" 4889 + msgstr "" 4890 + 4891 + #: src/view/com/util/forms/PostDropdownBtn.tsx:308 4892 + msgid "Quote post was re-attached" 4893 + msgstr "" 4894 + 4895 + #: src/view/com/util/forms/PostDropdownBtn.tsx:307 4896 + msgid "Quote post was successfully detached" 4897 + msgstr "" 4898 + 4899 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:314 4900 + #: src/view/com/util/post-ctrls/RepostButton.tsx:126 4901 + #: src/view/com/util/post-ctrls/RepostButton.tsx:153 4902 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:84 4903 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:91 4904 + msgid "Quote posts disabled" 4905 + msgstr "" 4906 + 4907 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:312 4908 + msgid "Quote posts enabled" 4909 + msgstr "" 4910 + 4911 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:296 4912 + msgid "Quote settings" 4913 + msgstr "" 4914 + 4915 + #: src/screens/Post/PostQuotes.tsx:31 4916 + #: src/screens/Post/PostQuotes.tsx:32 4917 + msgid "Quotes" 4918 + msgstr "" 4919 + 4920 + #: src/view/com/post-thread/PostThreadItem.tsx:230 4921 + msgid "Quotes of this post" 4922 + msgstr "" 4923 + 4924 + #: src/view/screens/PreferencesThreads.tsx:80 4925 + msgid "Random (aka \"Poster's Roulette\")" 4926 + msgstr "" 4927 + 4928 + #: src/view/com/util/forms/PostDropdownBtn.tsx:585 4929 + #: src/view/com/util/forms/PostDropdownBtn.tsx:595 4930 + msgid "Re-attach quote" 4931 + msgstr "" 4932 + 4933 + #: src/screens/Deactivated.tsx:144 4934 + msgid "Reactivate your account" 4935 + msgstr "" 4936 + 4937 + #: src/view/com/auth/SplashScreen.web.tsx:170 4938 + msgid "Read the Bluesky blog" 4939 + msgstr "" 4940 + 4941 + #: src/screens/Signup/StepInfo/Policies.tsx:58 4942 + #: src/screens/Signup/StepInfo/Policies.tsx:84 4943 + msgid "Read the Bluesky Privacy Policy" 4944 + msgstr "" 4945 + 4946 + #: src/screens/Signup/StepInfo/Policies.tsx:51 4947 + #: src/screens/Signup/StepInfo/Policies.tsx:71 4948 + msgid "Read the Bluesky Terms of Service" 4949 + msgstr "" 4950 + 4951 + #: src/components/dms/ReportDialog.tsx:169 4952 + msgid "Reason:" 4953 + msgstr "" 4954 + 4955 + #: src/view/screens/Search/Search.tsx:1051 4956 + msgid "Recent Searches" 4957 + msgstr "" 4958 + 4959 + #: src/screens/Messages/components/MessageListError.tsx:20 4960 + msgid "Reconnect" 4961 + msgstr "" 4962 + 4963 + #: src/view/screens/Notifications.tsx:143 4964 + msgid "Refresh notifications" 4965 + msgstr "" 4966 + 4967 + #: src/screens/Messages/ChatList.tsx:197 4968 + msgid "Reload conversations" 4969 + msgstr "" 4970 + 4971 + #: src/components/dialogs/MutedWords.tsx:438 4972 + #: src/components/FeedCard.tsx:316 4973 + #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 4974 + #: src/components/StarterPack/Wizard/WizardListCard.tsx:109 4975 + #: src/view/com/feeds/FeedSourceCard.tsx:316 4976 + #: src/view/com/modals/ListAddRemoveUsers.tsx:269 4977 + #: src/view/com/modals/SelfLabel.tsx:84 4978 + #: src/view/com/modals/UserAddRemoveLists.tsx:235 4979 + #: src/view/com/posts/FeedErrorMessage.tsx:213 4980 + #: src/view/com/util/AccountDropdownBtn.tsx:61 4981 + msgid "Remove" 4982 + msgstr "" 4983 + 4984 + #: src/components/StarterPack/Wizard/WizardListCard.tsx:58 4985 + msgid "Remove {displayName} from starter pack" 4986 + msgstr "" 4987 + 4988 + #: src/view/com/util/AccountDropdownBtn.tsx:26 4989 + msgid "Remove account" 4990 + msgstr "" 4991 + 4992 + #: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 4993 + msgid "Remove attachment" 4994 + msgstr "" 4995 + 4996 + #: src/view/com/util/UserAvatar.tsx:403 4997 + msgid "Remove Avatar" 4998 + msgstr "" 4999 + 5000 + #: src/view/com/util/UserBanner.tsx:155 5001 + msgid "Remove Banner" 5002 + msgstr "" 5003 + 5004 + #: src/screens/Messages/components/MessageInputEmbed.tsx:206 5005 + msgid "Remove embed" 5006 + msgstr "" 5007 + 5008 + #: src/view/com/posts/FeedErrorMessage.tsx:169 5009 + #: src/view/com/posts/FeedShutdownMsg.tsx:116 5010 + #: src/view/com/posts/FeedShutdownMsg.tsx:120 5011 + msgid "Remove feed" 5012 + msgstr "" 5013 + 5014 + #: src/view/com/posts/FeedErrorMessage.tsx:210 5015 + msgid "Remove feed?" 5016 + msgstr "" 5017 + 5018 + #: src/view/com/feeds/FeedSourceCard.tsx:187 5019 + #: src/view/com/feeds/FeedSourceCard.tsx:265 5020 + #: src/view/screens/ProfileFeed.tsx:330 5021 + #: src/view/screens/ProfileFeed.tsx:336 5022 + #: src/view/screens/ProfileList.tsx:493 5023 + #: src/view/screens/SavedFeeds.tsx:350 5024 + msgid "Remove from my feeds" 5025 + msgstr "" 5026 + 5027 + #: src/components/FeedCard.tsx:311 5028 + #: src/view/com/feeds/FeedSourceCard.tsx:311 5029 + msgid "Remove from my feeds?" 5030 + msgstr "" 5031 + 5032 + #: src/view/com/util/AccountDropdownBtn.tsx:53 5033 + msgid "Remove from quick access?" 5034 + msgstr "" 5035 + 5036 + #: src/screens/List/ListHiddenScreen.tsx:156 5037 + msgid "Remove from saved feeds" 5038 + msgstr "" 5039 + 5040 + #: src/view/com/composer/photos/Gallery.tsx:200 5041 + msgid "Remove image" 5042 + msgstr "" 5043 + 5044 + #: src/components/dialogs/MutedWords.tsx:523 5045 + msgid "Remove mute word from your list" 5046 + msgstr "" 5047 + 5048 + #: src/view/screens/Search/Search.tsx:1095 5049 + msgid "Remove profile" 5050 + msgstr "" 5051 + 5052 + #: src/view/screens/Search/Search.tsx:1097 5053 + msgid "Remove profile from search history" 5054 + msgstr "" 5055 + 5056 + #: src/view/com/util/post-embeds/QuoteEmbed.tsx:281 5057 + msgid "Remove quote" 5058 + msgstr "" 5059 + 5060 + #: src/view/com/util/post-ctrls/RepostButton.tsx:100 5061 + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 5062 + msgid "Remove repost" 5063 + msgstr "" 5064 + 5065 + #: src/view/com/composer/videos/SubtitleDialog.tsx:260 5066 + msgid "Remove subtitle file" 5067 + msgstr "" 5068 + 5069 + #: src/view/com/posts/FeedErrorMessage.tsx:211 5070 + msgid "Remove this feed from your saved feeds" 5071 + msgstr "" 5072 + 5073 + #: src/view/com/util/post-embeds/QuoteEmbed.tsx:110 5074 + msgid "Removed by author" 5075 + msgstr "" 5076 + 5077 + #: src/view/com/util/post-embeds/QuoteEmbed.tsx:108 5078 + msgid "Removed by you" 5079 + msgstr "" 5080 + 5081 + #: src/view/com/modals/ListAddRemoveUsers.tsx:200 5082 + #: src/view/com/modals/UserAddRemoveLists.tsx:170 5083 + msgid "Removed from list" 5084 + msgstr "" 5085 + 5086 + #: src/view/com/feeds/FeedSourceCard.tsx:138 5087 + msgid "Removed from my feeds" 5088 + msgstr "" 5089 + 5090 + #: src/screens/List/ListHiddenScreen.tsx:94 5091 + #: src/screens/List/ListHiddenScreen.tsx:160 5092 + msgid "Removed from saved feeds" 5093 + msgstr "" 5094 + 5095 + #: src/view/com/posts/FeedShutdownMsg.tsx:44 5096 + #: src/view/screens/ProfileFeed.tsx:190 5097 + #: src/view/screens/ProfileList.tsx:377 5098 + msgid "Removed from your feeds" 5099 + msgstr "" 5100 + 5101 + #: src/view/com/util/post-embeds/QuoteEmbed.tsx:282 5102 + msgid "Removes quoted post" 5103 + msgstr "" 5104 + 5105 + #: src/view/com/posts/FeedShutdownMsg.tsx:129 5106 + #: src/view/com/posts/FeedShutdownMsg.tsx:133 5107 + msgid "Replace with Discover" 5108 + msgstr "" 5109 + 5110 + #: src/view/screens/Profile.tsx:220 5111 + msgid "Replies" 5112 + msgstr "" 5113 + 5114 + #: src/components/WhoCanReply.tsx:69 5115 + msgid "Replies disabled" 5116 + msgstr "" 5117 + 5118 + #: src/components/WhoCanReply.tsx:215 5119 + msgid "Replies to this post are disabled." 5120 + msgstr "" 5121 + 5122 + #: src/view/com/composer/Composer.tsx:592 5123 + msgctxt "action" 5124 + msgid "Reply" 5125 + msgstr "" 5126 + 5127 + #: src/components/moderation/ModerationDetailsDialog.tsx:115 5128 + #: src/lib/moderation/useModerationCauseDescription.ts:123 5129 + msgid "Reply Hidden by Thread Author" 5130 + msgstr "" 5131 + 5132 + #: src/components/moderation/ModerationDetailsDialog.tsx:114 5133 + #: src/lib/moderation/useModerationCauseDescription.ts:122 5134 + msgid "Reply Hidden by You" 5135 + msgstr "" 5136 + 5137 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:356 5138 + msgid "Reply settings" 5139 + msgstr "" 5140 + 5141 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:341 5142 + msgid "Reply settings are chosen by the author of the thread" 5143 + msgstr "" 5144 + 5145 + #: src/view/com/post/Post.tsx:195 5146 + #: src/view/com/posts/FeedItem.tsx:544 5147 + msgctxt "description" 5148 + msgid "Reply to <0><1/></0>" 5149 + msgstr "" 5150 + 5151 + #: src/view/com/posts/FeedItem.tsx:535 5152 + msgctxt "description" 5153 + msgid "Reply to a blocked post" 5154 + msgstr "" 5155 + 5156 + #: src/view/com/posts/FeedItem.tsx:537 5157 + msgctxt "description" 5158 + msgid "Reply to a post" 5159 + msgstr "" 5160 + 5161 + #: src/view/com/post/Post.tsx:193 5162 + #: src/view/com/posts/FeedItem.tsx:541 5163 + msgctxt "description" 5164 + msgid "Reply to you" 5165 + msgstr "" 5166 + 5167 + #: src/view/com/util/forms/PostDropdownBtn.tsx:338 5168 + msgid "Reply visibility updated" 5169 + msgstr "" 5170 + 5171 + #: src/view/com/util/forms/PostDropdownBtn.tsx:337 5172 + msgid "Reply was successfully hidden" 5173 + msgstr "" 5174 + 5175 + #: src/components/dms/MessageMenu.tsx:132 5176 + #: src/components/dms/MessagesListBlockedFooter.tsx:77 5177 + #: src/components/dms/MessagesListBlockedFooter.tsx:84 5178 + msgid "Report" 5179 + msgstr "" 5180 + 5181 + #: src/view/com/profile/ProfileMenu.tsx:299 5182 + #: src/view/com/profile/ProfileMenu.tsx:302 5183 + msgid "Report Account" 5184 + msgstr "" 5185 + 5186 + #: src/components/dms/ConvoMenu.tsx:197 5187 + #: src/components/dms/ConvoMenu.tsx:200 5188 + #: src/components/dms/ReportConversationPrompt.tsx:18 5189 + msgid "Report conversation" 5190 + msgstr "" 5191 + 5192 + #: src/components/ReportDialog/index.tsx:44 5193 + msgid "Report dialog" 5194 + msgstr "" 5195 + 5196 + #: src/view/screens/ProfileFeed.tsx:347 5197 + #: src/view/screens/ProfileFeed.tsx:349 5198 + msgid "Report feed" 5199 + msgstr "" 5200 + 5201 + #: src/view/screens/ProfileList.tsx:535 5202 + msgid "Report List" 5203 + msgstr "" 5204 + 5205 + #: src/components/dms/MessageMenu.tsx:130 5206 + msgid "Report message" 5207 + msgstr "" 5208 + 5209 + #: src/view/com/util/forms/PostDropdownBtn.tsx:621 5210 + #: src/view/com/util/forms/PostDropdownBtn.tsx:623 5211 + msgid "Report post" 5212 + msgstr "" 5213 + 5214 + #: src/screens/StarterPack/StarterPackScreen.tsx:593 5215 + #: src/screens/StarterPack/StarterPackScreen.tsx:596 5216 + msgid "Report starter pack" 5217 + msgstr "" 5218 + 5219 + #: src/components/ReportDialog/SelectReportOptionView.tsx:43 5220 + msgid "Report this content" 5221 + msgstr "" 5222 + 5223 + #: src/components/ReportDialog/SelectReportOptionView.tsx:56 5224 + msgid "Report this feed" 5225 + msgstr "" 5226 + 5227 + #: src/components/ReportDialog/SelectReportOptionView.tsx:53 5228 + msgid "Report this list" 5229 + msgstr "" 5230 + 5231 + #: src/components/dms/ReportDialog.tsx:44 5232 + #: src/components/dms/ReportDialog.tsx:137 5233 + #: src/components/ReportDialog/SelectReportOptionView.tsx:62 5234 + msgid "Report this message" 5235 + msgstr "" 5236 + 5237 + #: src/components/ReportDialog/SelectReportOptionView.tsx:50 5238 + msgid "Report this post" 5239 + msgstr "" 5240 + 5241 + #: src/components/ReportDialog/SelectReportOptionView.tsx:59 5242 + msgid "Report this starter pack" 5243 + msgstr "" 5244 + 5245 + #: src/components/ReportDialog/SelectReportOptionView.tsx:47 5246 + msgid "Report this user" 5247 + msgstr "" 5248 + 5249 + #: src/view/com/util/post-ctrls/RepostButton.tsx:70 5250 + #: src/view/com/util/post-ctrls/RepostButton.tsx:101 5251 + #: src/view/com/util/post-ctrls/RepostButton.tsx:117 5252 + msgctxt "action" 5253 + msgid "Repost" 5254 + msgstr "" 5255 + 5256 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 5257 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 5258 + msgid "Repost" 5259 + msgstr "" 5260 + 5261 + #: src/screens/StarterPack/StarterPackScreen.tsx:535 5262 + #: src/view/com/util/post-ctrls/RepostButton.tsx:93 5263 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:49 5264 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:104 5265 + msgid "Repost or quote post" 5266 + msgstr "" 5267 + 5268 + #: src/screens/Post/PostRepostedBy.tsx:31 5269 + #: src/screens/Post/PostRepostedBy.tsx:32 5270 + msgid "Reposted By" 5271 + msgstr "" 5272 + 5273 + #: src/view/com/posts/FeedItem.tsx:294 5274 + msgid "Reposted by {0}" 5275 + msgstr "" 5276 + 5277 + #: src/view/com/posts/FeedItem.tsx:313 5278 + msgid "Reposted by <0><1/></0>" 5279 + msgstr "" 5280 + 5281 + #: src/view/com/posts/FeedItem.tsx:292 5282 + #: src/view/com/posts/FeedItem.tsx:311 5283 + msgid "Reposted by you" 5284 + msgstr "" 5285 + 5286 + #: src/view/com/notifications/FeedItem.tsx:180 5287 + msgid "reposted your post" 5288 + msgstr "" 5289 + 5290 + #: src/view/com/post-thread/PostThreadItem.tsx:209 5291 + msgid "Reposts of this post" 5292 + msgstr "" 5293 + 5294 + #: src/view/com/modals/ChangeEmail.tsx:176 5295 + #: src/view/com/modals/ChangeEmail.tsx:178 5296 + msgid "Request Change" 5297 + msgstr "" 5298 + 5299 + #: src/view/com/modals/ChangePassword.tsx:242 5300 + #: src/view/com/modals/ChangePassword.tsx:244 5301 + msgid "Request Code" 5302 + msgstr "" 5303 + 5304 + #: src/view/screens/AccessibilitySettings.tsx:89 5305 + msgid "Require alt text before posting" 5306 + msgstr "" 5307 + 5308 + #: src/view/screens/Settings/Email2FAToggle.tsx:51 5309 + msgid "Require email code to log into your account" 5310 + msgstr "" 5311 + 5312 + #: src/screens/Signup/StepInfo/index.tsx:159 5313 + msgid "Required for this provider" 5314 + msgstr "" 5315 + 5316 + #: src/components/LabelingServiceCard/index.tsx:80 5317 + msgid "Required in your region" 5318 + msgstr "" 5319 + 5320 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:167 5321 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:170 5322 + msgid "Resend email" 5323 + msgstr "" 5324 + 5325 + #: src/components/dialogs/VerifyEmailDialog.tsx:224 5326 + #: src/components/dialogs/VerifyEmailDialog.tsx:234 5327 + #: src/components/intents/VerifyEmailIntentDialog.tsx:130 5328 + msgid "Resend Email" 5329 + msgstr "" 5330 + 5331 + #: src/components/intents/VerifyEmailIntentDialog.tsx:122 5332 + msgid "Resend Verification Email" 5333 + msgstr "" 5334 + 5335 + #: src/view/com/modals/ChangePassword.tsx:186 5336 + msgid "Reset code" 5337 + msgstr "" 5338 + 5339 + #: src/view/com/modals/ChangePassword.tsx:193 5340 + msgid "Reset Code" 5341 + msgstr "" 5342 + 5343 + #: src/view/screens/Settings/index.tsx:866 5344 + #: src/view/screens/Settings/index.tsx:869 5345 + msgid "Reset onboarding state" 5346 + msgstr "" 5347 + 5348 + #: src/screens/Login/ForgotPasswordForm.tsx:80 5349 + msgid "Reset password" 5350 + msgstr "" 5351 + 5352 + #: src/view/screens/Settings/index.tsx:846 5353 + #: src/view/screens/Settings/index.tsx:849 5354 + msgid "Reset preferences state" 5355 + msgstr "" 5356 + 5357 + #: src/view/screens/Settings/index.tsx:867 5358 + msgid "Resets the onboarding state" 5359 + msgstr "" 5360 + 5361 + #: src/view/screens/Settings/index.tsx:847 5362 + msgid "Resets the preferences state" 5363 + msgstr "" 5364 + 5365 + #: src/screens/Login/LoginForm.tsx:296 5366 + msgid "Retries login" 5367 + msgstr "" 5368 + 5369 + #: src/view/com/util/error/ErrorMessage.tsx:57 5370 + #: src/view/com/util/error/ErrorScreen.tsx:74 5371 + msgid "Retries the last action, which errored out" 5372 + msgstr "" 5373 + 5374 + #: src/components/dms/MessageItem.tsx:244 5375 + #: src/components/Error.tsx:66 5376 + #: src/components/Lists.tsx:104 5377 + #: src/components/StarterPack/ProfileStarterPacks.tsx:319 5378 + #: src/screens/Login/LoginForm.tsx:295 5379 + #: src/screens/Login/LoginForm.tsx:302 5380 + #: src/screens/Messages/components/MessageListError.tsx:25 5381 + #: src/screens/Onboarding/StepInterests/index.tsx:217 5382 + #: src/screens/Onboarding/StepInterests/index.tsx:220 5383 + #: src/screens/Signup/BackNextButtons.tsx:54 5384 + #: src/view/com/util/error/ErrorMessage.tsx:55 5385 + #: src/view/com/util/error/ErrorScreen.tsx:72 5386 + #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55 5387 + #: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57 5388 + msgid "Retry" 5389 + msgstr "" 5390 + 5391 + #: src/components/Error.tsx:74 5392 + #: src/screens/List/ListHiddenScreen.tsx:205 5393 + #: src/screens/StarterPack/StarterPackScreen.tsx:739 5394 + #: src/view/screens/ProfileList.tsx:1021 5395 + msgid "Return to previous page" 5396 + msgstr "" 5397 + 5398 + #: src/view/screens/NotFound.tsx:59 5399 + msgid "Returns to home page" 5400 + msgstr "" 5401 + 5402 + #: src/view/screens/NotFound.tsx:58 5403 + #: src/view/screens/ProfileFeed.tsx:112 5404 + msgid "Returns to previous page" 5405 + msgstr "" 5406 + 5407 + #: src/components/dialogs/BirthDateSettings.tsx:124 5408 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:439 5409 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:445 5410 + #: src/components/StarterPack/QrCodeDialog.tsx:185 5411 + #: src/view/com/composer/GifAltText.tsx:191 5412 + #: src/view/com/composer/GifAltText.tsx:200 5413 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:77 5414 + #: src/view/com/composer/photos/EditImageDialog.web.tsx:83 5415 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:151 5416 + #: src/view/com/composer/photos/ImageAltTextDialog.tsx:161 5417 + #: src/view/com/modals/ChangeHandle.tsx:161 5418 + #: src/view/com/modals/CreateOrEditList.tsx:317 5419 + #: src/view/com/modals/EditProfile.tsx:219 5420 + #: src/view/screens/SavedFeeds.tsx:101 5421 + msgid "Save" 5422 + msgstr "" 5423 + 5424 + #: src/view/com/lightbox/Lightbox.tsx:167 5425 + #: src/view/com/modals/CreateOrEditList.tsx:325 5426 + msgctxt "action" 5427 + msgid "Save" 5428 + msgstr "" 5429 + 5430 + #: src/components/dialogs/BirthDateSettings.tsx:118 5431 + msgid "Save birthday" 5432 + msgstr "" 5433 + 5434 + #: src/view/screens/SavedFeeds.tsx:97 5435 + #: src/view/screens/SavedFeeds.tsx:101 5436 + msgid "Save changes" 5437 + msgstr "" 5438 + 5439 + #: src/view/com/modals/ChangeHandle.tsx:158 5440 + msgid "Save handle change" 5441 + msgstr "" 5442 + 5443 + #: src/components/StarterPack/ShareDialog.tsx:151 5444 + #: src/components/StarterPack/ShareDialog.tsx:158 5445 + msgid "Save image" 5446 + msgstr "" 5447 + 5448 + #: src/view/com/modals/CropImage.web.tsx:104 5449 + msgid "Save image crop" 5450 + msgstr "" 5451 + 5452 + #: src/components/StarterPack/QrCodeDialog.tsx:179 5453 + msgid "Save QR code" 5454 + msgstr "" 5455 + 5456 + #: src/view/screens/ProfileFeed.tsx:331 5457 + #: src/view/screens/ProfileFeed.tsx:337 5458 + msgid "Save to my feeds" 5459 + msgstr "" 5460 + 5461 + #: src/view/screens/SavedFeeds.tsx:173 5462 + msgid "Saved Feeds" 5463 + msgstr "" 5464 + 5465 + #: src/view/com/lightbox/Lightbox.tsx:95 5466 + msgid "Saved to your camera roll" 5467 + msgstr "" 5468 + 5469 + #: src/view/screens/ProfileFeed.tsx:199 5470 + #: src/view/screens/ProfileList.tsx:357 5471 + msgid "Saved to your feeds" 5472 + msgstr "" 5473 + 5474 + #: src/view/com/modals/ChangeHandle.tsx:159 5475 + msgid "Saves handle change to {handle}" 5476 + msgstr "" 5477 + 5478 + #: src/view/com/modals/CropImage.web.tsx:105 5479 + msgid "Saves image crop settings" 5480 + msgstr "" 5481 + 5482 + #: src/components/dms/ChatEmptyPill.tsx:33 5483 + #: src/components/NewskieDialog.tsx:105 5484 + #: src/view/com/notifications/FeedItem.tsx:416 5485 + #: src/view/com/notifications/FeedItem.tsx:441 5486 + msgid "Say hello!" 5487 + msgstr "" 5488 + 5489 + #: src/screens/Onboarding/index.tsx:33 5490 + #: src/screens/Onboarding/state.ts:99 5491 + msgid "Science" 5492 + msgstr "" 5493 + 5494 + #: src/view/screens/ProfileList.tsx:977 5495 + msgid "Scroll to top" 5496 + msgstr "" 5497 + 5498 + #: src/components/dms/dialogs/SearchablePeopleList.tsx:483 5499 + #: src/components/forms/SearchInput.tsx:34 5500 + #: src/components/forms/SearchInput.tsx:36 5501 + #: src/Navigation.tsx:554 5502 + #: src/view/com/modals/ListAddRemoveUsers.tsx:76 5503 + #: src/view/screens/Search/Search.tsx:589 5504 + #: src/view/shell/bottom-bar/BottomBar.tsx:178 5505 + #: src/view/shell/desktop/LeftNav.tsx:377 5506 + #: src/view/shell/Drawer.tsx:390 5507 + #: src/view/shell/Drawer.tsx:391 5508 + msgid "Search" 5509 + msgstr "" 5510 + 5511 + #: src/view/shell/desktop/Search.tsx:201 5512 + msgid "Search for \"{query}\"" 5513 + msgstr "" 5514 + 5515 + #: src/view/screens/Search/Search.tsx:994 5516 + msgid "Search for \"{searchText}\"" 5517 + msgstr "" 5518 + 5519 + #: src/screens/StarterPack/Wizard/index.tsx:491 5520 + msgid "Search for feeds that you want to suggest to others." 5521 + msgstr "" 5522 + 5523 + #: src/view/com/modals/ListAddRemoveUsers.tsx:71 5524 + msgid "Search for users" 5525 + msgstr "" 5526 + 5527 + #: src/components/dialogs/GifSelect.tsx:177 5528 + msgid "Search GIFs" 5529 + msgstr "" 5530 + 5531 + #: src/components/dms/dialogs/SearchablePeopleList.tsx:503 5532 + #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 5533 + msgid "Search profiles" 5534 + msgstr "" 5535 + 5536 + #: src/components/dialogs/GifSelect.tsx:178 5537 + msgid "Search Tenor" 5538 + msgstr "" 5539 + 5540 + #: src/view/com/modals/ChangeEmail.tsx:105 5541 + msgid "Security Step Required" 5542 + msgstr "" 5543 + 5544 + #: src/components/TagMenu/index.web.tsx:77 5545 + msgid "See {truncatedTag} posts" 5546 + msgstr "" 5547 + 5548 + #: src/components/TagMenu/index.web.tsx:94 5549 + msgid "See {truncatedTag} posts by user" 5550 + msgstr "" 5551 + 5552 + #: src/components/TagMenu/index.tsx:138 5553 + msgid "See <0>{displayTag}</0> posts" 5554 + msgstr "" 5555 + 5556 + #: src/components/TagMenu/index.tsx:197 5557 + msgid "See <0>{displayTag}</0> posts by this user" 5558 + msgstr "" 5559 + 5560 + #: src/view/com/auth/SplashScreen.web.tsx:175 5561 + msgid "See jobs at Bluesky" 5562 + msgstr "" 5563 + 5564 + #: src/view/screens/SavedFeeds.tsx:214 5565 + msgid "See this guide" 5566 + msgstr "" 5567 + 5568 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/Scrubber.tsx:189 5569 + msgid "Seek slider" 5570 + msgstr "" 5571 + 5572 + #: src/view/com/util/Selector.tsx:106 5573 + msgid "Select {item}" 5574 + msgstr "" 5575 + 5576 + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 5577 + msgid "Select a color" 5578 + msgstr "Select a colour" 5579 + 5580 + #: src/screens/Login/ChooseAccountForm.tsx:77 5581 + msgid "Select account" 5582 + msgstr "" 5583 + 5584 + #: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 5585 + msgid "Select an avatar" 5586 + msgstr "" 5587 + 5588 + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 5589 + msgid "Select an emoji" 5590 + msgstr "" 5591 + 5592 + #: src/screens/Login/index.tsx:117 5593 + msgid "Select from an existing account" 5594 + msgstr "" 5595 + 5596 + #: src/view/com/composer/photos/SelectGifBtn.tsx:35 5597 + msgid "Select GIF" 5598 + msgstr "" 5599 + 5600 + #: src/components/dialogs/GifSelect.tsx:307 5601 + msgid "Select GIF \"{0}\"" 5602 + msgstr "" 5603 + 5604 + #: src/components/dialogs/MutedWords.tsx:142 5605 + msgid "Select how long to mute this word for." 5606 + msgstr "" 5607 + 5608 + #: src/view/com/composer/videos/SubtitleDialog.tsx:245 5609 + msgid "Select language..." 5610 + msgstr "" 5611 + 5612 + #: src/view/screens/LanguageSettings.tsx:299 5613 + msgid "Select languages" 5614 + msgstr "" 5615 + 5616 + #: src/components/ReportDialog/SelectLabelerView.tsx:29 5617 + msgid "Select moderator" 5618 + msgstr "" 5619 + 5620 + #: src/view/com/util/Selector.tsx:107 5621 + msgid "Select option {i} of {numItems}" 5622 + msgstr "" 5623 + 5624 + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:66 5625 + msgid "Select subtitle file (.vtt)" 5626 + msgstr "" 5627 + 5628 + #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 5629 + msgid "Select the {emojiName} emoji as your avatar" 5630 + msgstr "" 5631 + 5632 + #: src/components/ReportDialog/SubmitView.tsx:140 5633 + msgid "Select the moderation service(s) to report to" 5634 + msgstr "" 5635 + 5636 + #: src/view/com/auth/server-input/index.tsx:79 5637 + msgid "Select the service that hosts your data." 5638 + msgstr "" 5639 + 5640 + #: src/view/com/composer/videos/SelectVideoBtn.tsx:106 5641 + msgid "Select video" 5642 + msgstr "" 5643 + 5644 + #: src/components/dialogs/MutedWords.tsx:242 5645 + msgid "Select what content this mute word should apply to." 5646 + msgstr "" 5647 + 5648 + #: src/view/screens/LanguageSettings.tsx:281 5649 + msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." 5650 + msgstr "" 5651 + 5652 + #: src/view/screens/LanguageSettings.tsx:95 5653 + msgid "Select your app language for the default text to display in the app." 5654 + msgstr "" 5655 + 5656 + #: src/screens/Signup/StepInfo/index.tsx:223 5657 + msgid "Select your date of birth" 5658 + msgstr "" 5659 + 5660 + #: src/screens/Onboarding/StepInterests/index.tsx:192 5661 + msgid "Select your interests from the options below" 5662 + msgstr "" 5663 + 5664 + #: src/view/screens/LanguageSettings.tsx:189 5665 + msgid "Select your preferred language for translations in your feed." 5666 + msgstr "" 5667 + 5668 + #: src/components/dms/ChatEmptyPill.tsx:38 5669 + msgid "Send a neat website!" 5670 + msgstr "" 5671 + 5672 + #: src/components/dialogs/VerifyEmailDialog.tsx:189 5673 + msgid "Send Confirmation" 5674 + msgstr "" 5675 + 5676 + #: src/components/dialogs/VerifyEmailDialog.tsx:182 5677 + msgid "Send confirmation email" 5678 + msgstr "" 5679 + 5680 + #: src/view/com/modals/VerifyEmail.tsx:210 5681 + #: src/view/com/modals/VerifyEmail.tsx:212 5682 + msgid "Send Confirmation Email" 5683 + msgstr "" 5684 + 5685 + #: src/view/com/modals/DeleteAccount.tsx:149 5686 + msgid "Send email" 5687 + msgstr "" 5688 + 5689 + #: src/view/com/modals/DeleteAccount.tsx:162 5690 + msgctxt "action" 5691 + msgid "Send Email" 5692 + msgstr "" 5693 + 5694 + #: src/view/shell/Drawer.tsx:331 5695 + msgid "Send feedback" 5696 + msgstr "" 5697 + 5698 + #: src/screens/Messages/components/MessageInput.tsx:165 5699 + #: src/screens/Messages/components/MessageInput.web.tsx:219 5700 + msgid "Send message" 5701 + msgstr "" 5702 + 5703 + #: src/components/dms/dialogs/ShareViaChatDialog.tsx:62 5704 + msgid "Send post to..." 5705 + msgstr "" 5706 + 5707 + #: src/components/dms/ReportDialog.tsx:229 5708 + #: src/components/dms/ReportDialog.tsx:232 5709 + #: src/components/ReportDialog/SubmitView.tsx:220 5710 + #: src/components/ReportDialog/SubmitView.tsx:224 5711 + msgid "Send report" 5712 + msgstr "" 5713 + 5714 + #: src/components/ReportDialog/SelectLabelerView.tsx:43 5715 + msgid "Send report to {0}" 5716 + msgstr "" 5717 + 5718 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:118 5719 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:121 5720 + msgid "Send verification email" 5721 + msgstr "" 5722 + 5723 + #: src/view/com/util/forms/PostDropdownBtn.tsx:441 5724 + #: src/view/com/util/forms/PostDropdownBtn.tsx:444 5725 + msgid "Send via direct message" 5726 + msgstr "" 5727 + 5728 + #: src/view/com/modals/DeleteAccount.tsx:151 5729 + msgid "Sends email with confirmation code for account deletion" 5730 + msgstr "" 5731 + 5732 + #: src/view/com/auth/server-input/index.tsx:111 5733 + msgid "Server address" 5734 + msgstr "" 5735 + 5736 + #: src/screens/Moderation/index.tsx:314 5737 + msgid "Set birthdate" 5738 + msgstr "" 5739 + 5740 + #: src/screens/Login/SetNewPasswordForm.tsx:96 5741 + msgid "Set new password" 5742 + msgstr "" 5743 + 5744 + #: src/view/screens/PreferencesFollowingFeed.tsx:121 5745 + msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." 5746 + msgstr "" 5747 + 5748 + #: src/view/screens/PreferencesFollowingFeed.tsx:63 5749 + msgid "Set this setting to \"No\" to hide all replies from your feed." 5750 + msgstr "" 5751 + 5752 + #: src/view/screens/PreferencesFollowingFeed.tsx:87 5753 + msgid "Set this setting to \"No\" to hide all reposts from your feed." 5754 + msgstr "" 5755 + 5756 + #: src/view/screens/PreferencesThreads.tsx:116 5757 + msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." 5758 + msgstr "" 5759 + 5760 + #: src/view/screens/PreferencesFollowingFeed.tsx:157 5761 + msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." 5762 + msgstr "" 5763 + 5764 + #: src/screens/Onboarding/Layout.tsx:48 5765 + msgid "Set up your account" 5766 + msgstr "" 5767 + 5768 + #: src/view/com/modals/ChangeHandle.tsx:254 5769 + msgid "Sets Bluesky username" 5770 + msgstr "" 5771 + 5772 + #: src/screens/Login/ForgotPasswordForm.tsx:107 5773 + msgid "Sets email for password reset" 5774 + msgstr "" 5775 + 5776 + #: src/Navigation.tsx:154 5777 + #: src/view/screens/Settings/index.tsx:302 5778 + #: src/view/shell/desktop/LeftNav.tsx:423 5779 + #: src/view/shell/Drawer.tsx:555 5780 + #: src/view/shell/Drawer.tsx:556 5781 + msgid "Settings" 5782 + msgstr "" 5783 + 5784 + #: src/view/com/modals/SelfLabel.tsx:126 5785 + msgid "Sexual activity or erotic nudity." 5786 + msgstr "" 5787 + 5788 + #: src/lib/moderation/useGlobalLabelStrings.ts:38 5789 + msgid "Sexually Suggestive" 5790 + msgstr "" 5791 + 5792 + #: src/components/StarterPack/QrCodeDialog.tsx:175 5793 + #: src/screens/StarterPack/StarterPackScreen.tsx:411 5794 + #: src/screens/StarterPack/StarterPackScreen.tsx:582 5795 + #: src/view/com/profile/ProfileMenu.tsx:195 5796 + #: src/view/com/profile/ProfileMenu.tsx:204 5797 + #: src/view/com/util/forms/PostDropdownBtn.tsx:452 5798 + #: src/view/com/util/forms/PostDropdownBtn.tsx:461 5799 + #: src/view/com/util/post-ctrls/PostCtrls.tsx:345 5800 + #: src/view/screens/ProfileList.tsx:478 5801 + msgid "Share" 5802 + msgstr "" 5803 + 5804 + #: src/view/com/lightbox/Lightbox.tsx:176 5805 + msgctxt "action" 5806 + msgid "Share" 5807 + msgstr "" 5808 + 5809 + #: src/components/dms/ChatEmptyPill.tsx:37 5810 + msgid "Share a cool story!" 5811 + msgstr "" 5812 + 5813 + #: src/components/dms/ChatEmptyPill.tsx:36 5814 + msgid "Share a fun fact!" 5815 + msgstr "" 5816 + 5817 + #: src/view/com/profile/ProfileMenu.tsx:353 5818 + #: src/view/com/util/forms/PostDropdownBtn.tsx:703 5819 + #: src/view/com/util/post-ctrls/PostCtrls.tsx:361 5820 + msgid "Share anyway" 5821 + msgstr "" 5822 + 5823 + #: src/view/screens/ProfileFeed.tsx:357 5824 + #: src/view/screens/ProfileFeed.tsx:359 5825 + msgid "Share feed" 5826 + msgstr "" 5827 + 5828 + #: src/components/StarterPack/ShareDialog.tsx:124 5829 + #: src/components/StarterPack/ShareDialog.tsx:131 5830 + #: src/screens/StarterPack/StarterPackScreen.tsx:586 5831 + msgid "Share link" 5832 + msgstr "" 5833 + 5834 + #: src/view/com/modals/LinkWarning.tsx:89 5835 + #: src/view/com/modals/LinkWarning.tsx:95 5836 + msgid "Share Link" 5837 + msgstr "" 5838 + 5839 + #: src/components/StarterPack/ShareDialog.tsx:88 5840 + msgid "Share link dialog" 5841 + msgstr "" 5842 + 5843 + #: src/components/StarterPack/ShareDialog.tsx:135 5844 + #: src/components/StarterPack/ShareDialog.tsx:146 5845 + msgid "Share QR code" 5846 + msgstr "" 5847 + 5848 + #: src/screens/StarterPack/StarterPackScreen.tsx:404 5849 + msgid "Share this starter pack" 5850 + msgstr "" 5851 + 5852 + #: src/components/StarterPack/ShareDialog.tsx:100 5853 + msgid "Share this starter pack and help people join your community on Bluesky." 5854 + msgstr "" 5855 + 5856 + #: src/components/dms/ChatEmptyPill.tsx:34 5857 + msgid "Share your favorite feed!" 5858 + msgstr "Share your favourite feed!" 5859 + 5860 + #: src/Navigation.tsx:250 5861 + msgid "Shared Preferences Tester" 5862 + msgstr "" 5863 + 5864 + #: src/view/com/modals/LinkWarning.tsx:92 5865 + msgid "Shares the linked website" 5866 + msgstr "" 5867 + 5868 + #: src/components/moderation/ContentHider.tsx:116 5869 + #: src/components/moderation/LabelPreference.tsx:136 5870 + #: src/components/moderation/PostHider.tsx:122 5871 + #: src/view/screens/Settings/index.tsx:351 5872 + msgid "Show" 5873 + msgstr "" 5874 + 5875 + #: src/view/com/util/post-embeds/GifEmbed.tsx:166 5876 + msgid "Show alt text" 5877 + msgstr "" 5878 + 5879 + #: src/components/moderation/ScreenHider.tsx:172 5880 + #: src/components/moderation/ScreenHider.tsx:175 5881 + #: src/screens/List/ListHiddenScreen.tsx:176 5882 + msgid "Show anyway" 5883 + msgstr "" 5884 + 5885 + #: src/lib/moderation/useLabelBehaviorDescription.ts:27 5886 + #: src/lib/moderation/useLabelBehaviorDescription.ts:63 5887 + msgid "Show badge" 5888 + msgstr "" 5889 + 5890 + #: src/lib/moderation/useLabelBehaviorDescription.ts:61 5891 + msgid "Show badge and filter from feeds" 5892 + msgstr "" 5893 + 5894 + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 5895 + msgid "Show hidden replies" 5896 + msgstr "" 5897 + 5898 + #: src/view/com/util/forms/PostDropdownBtn.tsx:491 5899 + #: src/view/com/util/forms/PostDropdownBtn.tsx:493 5900 + msgid "Show less like this" 5901 + msgstr "" 5902 + 5903 + #: src/screens/List/ListHiddenScreen.tsx:172 5904 + msgid "Show list anyway" 5905 + msgstr "" 5906 + 5907 + #: src/view/com/post-thread/PostThreadItem.tsx:580 5908 + #: src/view/com/post/Post.tsx:233 5909 + #: src/view/com/posts/FeedItem.tsx:500 5910 + msgid "Show More" 5911 + msgstr "" 5912 + 5913 + #: src/view/com/util/forms/PostDropdownBtn.tsx:483 5914 + #: src/view/com/util/forms/PostDropdownBtn.tsx:485 5915 + msgid "Show more like this" 5916 + msgstr "" 5917 + 5918 + #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 5919 + msgid "Show muted replies" 5920 + msgstr "" 5921 + 5922 + #: src/view/screens/PreferencesFollowingFeed.tsx:154 5923 + msgid "Show Posts from My Feeds" 5924 + msgstr "" 5925 + 5926 + #: src/view/screens/PreferencesFollowingFeed.tsx:118 5927 + msgid "Show Quote Posts" 5928 + msgstr "" 5929 + 5930 + #: src/view/screens/PreferencesFollowingFeed.tsx:60 5931 + msgid "Show Replies" 5932 + msgstr "" 5933 + 5934 + #: src/view/screens/PreferencesThreads.tsx:94 5935 + msgid "Show replies by people you follow before all other replies." 5936 + msgstr "" 5937 + 5938 + #: src/view/com/util/forms/PostDropdownBtn.tsx:559 5939 + #: src/view/com/util/forms/PostDropdownBtn.tsx:569 5940 + msgid "Show reply for everyone" 5941 + msgstr "" 5942 + 5943 + #: src/view/screens/PreferencesFollowingFeed.tsx:84 5944 + msgid "Show Reposts" 5945 + msgstr "" 5946 + 5947 + #: src/components/moderation/ContentHider.tsx:69 5948 + #: src/components/moderation/PostHider.tsx:79 5949 + msgid "Show the content" 5950 + msgstr "" 5951 + 5952 + #: src/lib/moderation/useLabelBehaviorDescription.ts:58 5953 + msgid "Show warning" 5954 + msgstr "" 5955 + 5956 + #: src/lib/moderation/useLabelBehaviorDescription.ts:56 5957 + msgid "Show warning and filter from feeds" 5958 + msgstr "" 5959 + 5960 + #: src/components/dialogs/Signin.tsx:97 5961 + #: src/components/dialogs/Signin.tsx:99 5962 + #: src/screens/Login/index.tsx:97 5963 + #: src/screens/Login/index.tsx:116 5964 + #: src/screens/Login/LoginForm.tsx:163 5965 + #: src/view/com/auth/SplashScreen.tsx:62 5966 + #: src/view/com/auth/SplashScreen.tsx:70 5967 + #: src/view/com/auth/SplashScreen.web.tsx:122 5968 + #: src/view/com/auth/SplashScreen.web.tsx:130 5969 + #: src/view/shell/bottom-bar/BottomBar.tsx:311 5970 + #: src/view/shell/bottom-bar/BottomBar.tsx:312 5971 + #: src/view/shell/bottom-bar/BottomBar.tsx:314 5972 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 5973 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 5974 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 5975 + #: src/view/shell/NavSignupCard.tsx:69 5976 + #: src/view/shell/NavSignupCard.tsx:70 5977 + #: src/view/shell/NavSignupCard.tsx:72 5978 + msgid "Sign in" 5979 + msgstr "" 5980 + 5981 + #: src/components/AccountList.tsx:114 5982 + msgid "Sign in as {0}" 5983 + msgstr "" 5984 + 5985 + #: src/screens/Login/ChooseAccountForm.tsx:80 5986 + msgid "Sign in as..." 5987 + msgstr "" 5988 + 5989 + #: src/components/dialogs/Signin.tsx:75 5990 + msgid "Sign in or create your account to join the conversation!" 5991 + msgstr "" 5992 + 5993 + #: src/components/dialogs/Signin.tsx:46 5994 + msgid "Sign into Bluesky or create a new account" 5995 + msgstr "" 5996 + 5997 + #: src/view/screens/Settings/index.tsx:432 5998 + msgid "Sign out" 5999 + msgstr "" 6000 + 6001 + #: src/view/screens/Settings/index.tsx:420 6002 + #: src/view/screens/Settings/index.tsx:430 6003 + msgid "Sign out of all accounts" 6004 + msgstr "" 6005 + 6006 + #: src/view/shell/bottom-bar/BottomBar.tsx:301 6007 + #: src/view/shell/bottom-bar/BottomBar.tsx:302 6008 + #: src/view/shell/bottom-bar/BottomBar.tsx:304 6009 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 6010 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 6011 + #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 6012 + #: src/view/shell/NavSignupCard.tsx:60 6013 + #: src/view/shell/NavSignupCard.tsx:61 6014 + #: src/view/shell/NavSignupCard.tsx:63 6015 + msgid "Sign up" 6016 + msgstr "" 6017 + 6018 + #: src/components/moderation/ScreenHider.tsx:91 6019 + #: src/lib/moderation/useGlobalLabelStrings.ts:28 6020 + msgid "Sign-in Required" 6021 + msgstr "" 6022 + 6023 + #: src/view/screens/Settings/index.tsx:361 6024 + msgid "Signed in as" 6025 + msgstr "" 6026 + 6027 + #: src/lib/hooks/useAccountSwitcher.ts:41 6028 + #: src/screens/Login/ChooseAccountForm.tsx:53 6029 + msgid "Signed in as @{0}" 6030 + msgstr "" 6031 + 6032 + #: src/view/com/notifications/FeedItem.tsx:218 6033 + msgid "signed up with your starter pack" 6034 + msgstr "" 6035 + 6036 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:299 6037 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:306 6038 + msgid "Signup without a starter pack" 6039 + msgstr "" 6040 + 6041 + #: src/components/FeedInterstitials.tsx:316 6042 + msgid "Similar accounts" 6043 + msgstr "" 6044 + 6045 + #: src/screens/Onboarding/StepInterests/index.tsx:231 6046 + #: src/screens/StarterPack/Wizard/index.tsx:191 6047 + msgid "Skip" 6048 + msgstr "" 6049 + 6050 + #: src/screens/Onboarding/StepInterests/index.tsx:228 6051 + msgid "Skip this flow" 6052 + msgstr "" 6053 + 6054 + #: src/components/dialogs/nuxs/NeueTypography.tsx:95 6055 + #: src/screens/Settings/AppearanceSettings.tsx:165 6056 + msgid "Smaller" 6057 + msgstr "" 6058 + 6059 + #: src/screens/Onboarding/index.tsx:37 6060 + #: src/screens/Onboarding/state.ts:87 6061 + msgid "Software Dev" 6062 + msgstr "" 6063 + 6064 + #: src/components/FeedInterstitials.tsx:447 6065 + msgid "Some other feeds you might like" 6066 + msgstr "" 6067 + 6068 + #: src/components/WhoCanReply.tsx:70 6069 + msgid "Some people can reply" 6070 + msgstr "" 6071 + 6072 + #: src/screens/Messages/Conversation.tsx:106 6073 + msgid "Something went wrong" 6074 + msgstr "" 6075 + 6076 + #: src/screens/Deactivated.tsx:94 6077 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 6078 + msgid "Something went wrong, please try again" 6079 + msgstr "" 6080 + 6081 + #: src/components/ReportDialog/index.tsx:54 6082 + #: src/screens/Moderation/index.tsx:115 6083 + #: src/screens/Profile/Sections/Labels.tsx:87 6084 + msgid "Something went wrong, please try again." 6085 + msgstr "" 6086 + 6087 + #: src/components/Lists.tsx:200 6088 + #: src/view/screens/NotificationsSettings.tsx:46 6089 + msgid "Something went wrong!" 6090 + msgstr "" 6091 + 6092 + #: src/App.native.tsx:112 6093 + #: src/App.web.tsx:95 6094 + msgid "Sorry! Your session expired. Please log in again." 6095 + msgstr "" 6096 + 6097 + #: src/view/screens/PreferencesThreads.tsx:63 6098 + msgid "Sort Replies" 6099 + msgstr "" 6100 + 6101 + #: src/view/screens/PreferencesThreads.tsx:66 6102 + msgid "Sort replies to the same post by:" 6103 + msgstr "" 6104 + 6105 + #: src/components/moderation/LabelsOnMeDialog.tsx:168 6106 + msgid "Source:" 6107 + msgstr "" 6108 + 6109 + #: src/lib/moderation/useReportOptions.ts:72 6110 + #: src/lib/moderation/useReportOptions.ts:85 6111 + msgid "Spam" 6112 + msgstr "" 6113 + 6114 + #: src/lib/moderation/useReportOptions.ts:55 6115 + msgid "Spam; excessive mentions or replies" 6116 + msgstr "" 6117 + 6118 + #: src/screens/Onboarding/index.tsx:27 6119 + #: src/screens/Onboarding/state.ts:100 6120 + msgid "Sports" 6121 + msgstr "" 6122 + 6123 + #: src/components/dms/dialogs/NewChatDialog.tsx:61 6124 + msgid "Start a new chat" 6125 + msgstr "" 6126 + 6127 + #: src/components/dms/dialogs/SearchablePeopleList.tsx:349 6128 + msgid "Start chat with {displayName}" 6129 + msgstr "" 6130 + 6131 + #: src/Navigation.tsx:357 6132 + #: src/Navigation.tsx:362 6133 + #: src/screens/StarterPack/Wizard/index.tsx:182 6134 + msgid "Starter Pack" 6135 + msgstr "" 6136 + 6137 + #: src/components/StarterPack/StarterPackCard.tsx:75 6138 + msgid "Starter pack by {0}" 6139 + msgstr "" 6140 + 6141 + #: src/components/StarterPack/StarterPackCard.tsx:74 6142 + msgid "Starter pack by you" 6143 + msgstr "" 6144 + 6145 + #: src/screens/StarterPack/StarterPackScreen.tsx:703 6146 + msgid "Starter pack is invalid" 6147 + msgstr "" 6148 + 6149 + #: src/view/screens/Profile.tsx:224 6150 + msgid "Starter Packs" 6151 + msgstr "" 6152 + 6153 + #: src/components/StarterPack/ProfileStarterPacks.tsx:239 6154 + msgid "Starter packs let you easily share your favorite feeds and people with your friends." 6155 + msgstr "Starter packs let you easily share your favourite feeds and people with your friends." 6156 + 6157 + #: src/view/screens/Settings/index.tsx:917 6158 + msgid "Status Page" 6159 + msgstr "" 6160 + 6161 + #: src/screens/Signup/index.tsx:130 6162 + msgid "Step {0} of {1}" 6163 + msgstr "" 6164 + 6165 + #: src/view/screens/Settings/index.tsx:278 6166 + msgid "Storage cleared, you need to restart the app now." 6167 + msgstr "" 6168 + 6169 + #: src/Navigation.tsx:240 6170 + #: src/view/screens/Settings/index.tsx:829 6171 + msgid "Storybook" 6172 + msgstr "" 6173 + 6174 + #: src/components/moderation/LabelsOnMeDialog.tsx:299 6175 + #: src/components/moderation/LabelsOnMeDialog.tsx:300 6176 + #: src/screens/Messages/components/ChatDisabled.tsx:142 6177 + #: src/screens/Messages/components/ChatDisabled.tsx:143 6178 + msgid "Submit" 6179 + msgstr "" 6180 + 6181 + #: src/view/screens/ProfileList.tsx:694 6182 + msgid "Subscribe" 6183 + msgstr "" 6184 + 6185 + #: src/screens/Profile/Sections/Labels.tsx:201 6186 + msgid "Subscribe to @{0} to use these labels:" 6187 + msgstr "" 6188 + 6189 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:225 6190 + msgid "Subscribe to Labeler" 6191 + msgstr "Subscribe to Labeller" 6192 + 6193 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:191 6194 + msgid "Subscribe to this labeler" 6195 + msgstr "" 6196 + 6197 + #: src/view/screens/ProfileList.tsx:690 6198 + msgid "Subscribe to this list" 6199 + msgstr "" 6200 + 6201 + #: src/components/dialogs/VerifyEmailDialog.tsx:81 6202 + msgid "Success!" 6203 + msgstr "" 6204 + 6205 + #: src/view/screens/Search/Explore.tsx:332 6206 + msgid "Suggested accounts" 6207 + msgstr "" 6208 + 6209 + #: src/components/FeedInterstitials.tsx:318 6210 + msgid "Suggested for you" 6211 + msgstr "" 6212 + 6213 + #: src/view/com/modals/SelfLabel.tsx:96 6214 + msgid "Suggestive" 6215 + msgstr "" 6216 + 6217 + #: src/Navigation.tsx:260 6218 + #: src/view/screens/Support.tsx:30 6219 + #: src/view/screens/Support.tsx:33 6220 + msgid "Support" 6221 + msgstr "" 6222 + 6223 + #: src/components/dialogs/SwitchAccount.tsx:46 6224 + #: src/components/dialogs/SwitchAccount.tsx:49 6225 + msgid "Switch Account" 6226 + msgstr "" 6227 + 6228 + #: src/view/screens/Settings/index.tsx:130 6229 + msgid "Switch to {0}" 6230 + msgstr "" 6231 + 6232 + #: src/view/screens/Settings/index.tsx:131 6233 + msgid "Switches the account you are logged in to" 6234 + msgstr "" 6235 + 6236 + #: src/components/dialogs/nuxs/NeueTypography.tsx:78 6237 + #: src/screens/Settings/AppearanceSettings.tsx:101 6238 + #: src/screens/Settings/AppearanceSettings.tsx:148 6239 + msgid "System" 6240 + msgstr "" 6241 + 6242 + #: src/view/screens/Settings/index.tsx:817 6243 + msgid "System log" 6244 + msgstr "" 6245 + 6246 + #: src/components/TagMenu/index.tsx:88 6247 + msgid "Tag menu: {displayTag}" 6248 + msgstr "" 6249 + 6250 + #: src/components/dialogs/MutedWords.tsx:282 6251 + msgid "Tags only" 6252 + msgstr "" 6253 + 6254 + #: src/components/ProgressGuide/Toast.tsx:150 6255 + msgid "Tap to dismiss" 6256 + msgstr "" 6257 + 6258 + #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:136 6259 + msgid "Tap to enter full screen" 6260 + msgstr "" 6261 + 6262 + #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:142 6263 + msgid "Tap to play or pause" 6264 + msgstr "" 6265 + 6266 + #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:159 6267 + msgid "Tap to toggle sound" 6268 + msgstr "" 6269 + 6270 + #: src/view/com/util/images/AutoSizedImage.tsx:219 6271 + #: src/view/com/util/images/AutoSizedImage.tsx:239 6272 + msgid "Tap to view full image" 6273 + msgstr "" 6274 + 6275 + #: src/state/shell/progress-guide.tsx:166 6276 + msgid "Task complete - 10 likes!" 6277 + msgstr "" 6278 + 6279 + #: src/components/ProgressGuide/List.tsx:49 6280 + msgid "Teach our algorithm what you like" 6281 + msgstr "" 6282 + 6283 + #: src/screens/Onboarding/index.tsx:36 6284 + #: src/screens/Onboarding/state.ts:101 6285 + msgid "Tech" 6286 + msgstr "" 6287 + 6288 + #: src/components/dms/ChatEmptyPill.tsx:35 6289 + msgid "Tell a joke!" 6290 + msgstr "" 6291 + 6292 + #: src/screens/Profile/Header/EditProfileDialog.tsx:348 6293 + msgid "Tell us a bit about yourself" 6294 + msgstr "" 6295 + 6296 + #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 6297 + msgid "Tell us a little more" 6298 + msgstr "" 6299 + 6300 + #: src/view/shell/desktop/RightNav.tsx:90 6301 + msgid "Terms" 6302 + msgstr "" 6303 + 6304 + #: src/Navigation.tsx:270 6305 + #: src/view/screens/Settings/index.tsx:905 6306 + #: src/view/screens/TermsOfService.tsx:29 6307 + #: src/view/shell/Drawer.tsx:284 6308 + msgid "Terms of Service" 6309 + msgstr "" 6310 + 6311 + #: src/lib/moderation/useReportOptions.ts:60 6312 + #: src/lib/moderation/useReportOptions.ts:99 6313 + #: src/lib/moderation/useReportOptions.ts:107 6314 + #: src/lib/moderation/useReportOptions.ts:115 6315 + msgid "Terms used violate community standards" 6316 + msgstr "" 6317 + 6318 + #: src/components/dialogs/MutedWords.tsx:266 6319 + msgid "Text & tags" 6320 + msgstr "" 6321 + 6322 + #: src/components/moderation/LabelsOnMeDialog.tsx:263 6323 + #: src/screens/Messages/components/ChatDisabled.tsx:108 6324 + msgid "Text input field" 6325 + msgstr "" 6326 + 6327 + #: src/components/dialogs/VerifyEmailDialog.tsx:82 6328 + msgid "Thank you! Your email has been successfully verified." 6329 + msgstr "" 6330 + 6331 + #: src/components/dms/ReportDialog.tsx:129 6332 + #: src/components/ReportDialog/SubmitView.tsx:82 6333 + msgid "Thank you. Your report has been sent." 6334 + msgstr "" 6335 + 6336 + #: src/components/intents/VerifyEmailIntentDialog.tsx:82 6337 + msgid "Thanks, you have successfully verified your email address. You can close this dialog." 6338 + msgstr "" 6339 + 6340 + #: src/view/com/modals/ChangeHandle.tsx:452 6341 + msgid "That contains the following:" 6342 + msgstr "" 6343 + 6344 + #: src/screens/Signup/StepHandle.tsx:51 6345 + msgid "That handle is already taken." 6346 + msgstr "" 6347 + 6348 + #: src/screens/StarterPack/StarterPackScreen.tsx:97 6349 + #: src/screens/StarterPack/StarterPackScreen.tsx:98 6350 + #: src/screens/StarterPack/StarterPackScreen.tsx:137 6351 + #: src/screens/StarterPack/StarterPackScreen.tsx:138 6352 + #: src/screens/StarterPack/Wizard/index.tsx:105 6353 + #: src/screens/StarterPack/Wizard/index.tsx:113 6354 + msgid "That starter pack could not be found." 6355 + msgstr "" 6356 + 6357 + #: src/view/com/post-thread/PostQuotes.tsx:133 6358 + msgid "That's all, folks!" 6359 + msgstr "" 6360 + 6361 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:265 6362 + #: src/view/com/profile/ProfileMenu.tsx:329 6363 + msgid "The account will be able to interact with you after unblocking." 6364 + msgstr "" 6365 + 6366 + #: src/components/moderation/ModerationDetailsDialog.tsx:118 6367 + #: src/lib/moderation/useModerationCauseDescription.ts:126 6368 + msgid "The author of this thread has hidden this reply." 6369 + msgstr "" 6370 + 6371 + #: src/screens/Moderation/index.tsx:366 6372 + msgid "The Bluesky web application" 6373 + msgstr "" 6374 + 6375 + #: src/view/screens/CommunityGuidelines.tsx:36 6376 + msgid "The Community Guidelines have been moved to <0/>" 6377 + msgstr "" 6378 + 6379 + #: src/view/screens/CopyrightPolicy.tsx:33 6380 + msgid "The Copyright Policy has been moved to <0/>" 6381 + msgstr "" 6382 + 6383 + #: src/view/com/posts/FeedShutdownMsg.tsx:102 6384 + msgid "The Discover feed" 6385 + msgstr "" 6386 + 6387 + #: src/state/shell/progress-guide.tsx:167 6388 + #: src/state/shell/progress-guide.tsx:172 6389 + msgid "The Discover feed now knows what you like" 6390 + msgstr "" 6391 + 6392 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:320 6393 + msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." 6394 + msgstr "" 6395 + 6396 + #: src/view/com/posts/FeedShutdownMsg.tsx:67 6397 + msgid "The feed has been replaced with Discover." 6398 + msgstr "" 6399 + 6400 + #: src/components/moderation/LabelsOnMeDialog.tsx:58 6401 + msgid "The following labels were applied to your account." 6402 + msgstr "" 6403 + 6404 + #: src/components/moderation/LabelsOnMeDialog.tsx:59 6405 + msgid "The following labels were applied to your content." 6406 + msgstr "" 6407 + 6408 + #: src/screens/Onboarding/Layout.tsx:58 6409 + msgid "The following steps will help customize your Bluesky experience." 6410 + msgstr "The following steps will help customise your Bluesky experience." 6411 + 6412 + #: src/view/com/post-thread/PostThread.tsx:208 6413 + #: src/view/com/post-thread/PostThread.tsx:220 6414 + msgid "The post may have been deleted." 6415 + msgstr "" 6416 + 6417 + #: src/view/screens/PrivacyPolicy.tsx:33 6418 + msgid "The Privacy Policy has been moved to <0/>" 6419 + msgstr "" 6420 + 6421 + #: src/view/com/composer/state/video.ts:409 6422 + msgid "The selected video is larger than 50MB." 6423 + msgstr "" 6424 + 6425 + #: src/screens/StarterPack/StarterPackScreen.tsx:713 6426 + msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." 6427 + msgstr "" 6428 + 6429 + #: src/view/screens/Support.tsx:36 6430 + msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." 6431 + msgstr "" 6432 + 6433 + #: src/view/screens/TermsOfService.tsx:33 6434 + msgid "The Terms of Service have been moved to" 6435 + msgstr "" 6436 + 6437 + #: src/components/intents/VerifyEmailIntentDialog.tsx:94 6438 + msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." 6439 + msgstr "" 6440 + 6441 + #: src/components/dialogs/nuxs/NeueTypography.tsx:82 6442 + #: src/screens/Settings/AppearanceSettings.tsx:152 6443 + msgid "Theme" 6444 + msgstr "" 6445 + 6446 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 6447 + msgid "There is no time limit for account deactivation, come back any time." 6448 + msgstr "" 6449 + 6450 + #: src/components/dialogs/GifSelect.tsx:225 6451 + msgid "There was an issue connecting to Tenor." 6452 + msgstr "" 6453 + 6454 + #: src/view/screens/ProfileFeed.tsx:233 6455 + #: src/view/screens/ProfileList.tsx:360 6456 + #: src/view/screens/ProfileList.tsx:379 6457 + #: src/view/screens/SavedFeeds.tsx:85 6458 + msgid "There was an issue contacting the server" 6459 + msgstr "" 6460 + 6461 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:111 6462 + #: src/view/screens/ProfileFeed.tsx:546 6463 + msgid "There was an issue contacting the server, please check your internet connection and try again." 6464 + msgstr "" 6465 + 6466 + #: src/view/com/feeds/FeedSourceCard.tsx:127 6467 + #: src/view/com/feeds/FeedSourceCard.tsx:140 6468 + msgid "There was an issue contacting your server" 6469 + msgstr "" 6470 + 6471 + #: src/view/com/notifications/Feed.tsx:129 6472 + msgid "There was an issue fetching notifications. Tap here to try again." 6473 + msgstr "" 6474 + 6475 + #: src/view/com/posts/Feed.tsx:473 6476 + msgid "There was an issue fetching posts. Tap here to try again." 6477 + msgstr "" 6478 + 6479 + #: src/view/com/lists/ListMembers.tsx:169 6480 + msgid "There was an issue fetching the list. Tap here to try again." 6481 + msgstr "" 6482 + 6483 + #: src/view/com/feeds/ProfileFeedgens.tsx:150 6484 + #: src/view/com/lists/ProfileLists.tsx:149 6485 + msgid "There was an issue fetching your lists. Tap here to try again." 6486 + msgstr "" 6487 + 6488 + #: src/view/com/posts/FeedErrorMessage.tsx:145 6489 + msgid "There was an issue removing this feed. Please check your internet connection and try again." 6490 + msgstr "" 6491 + 6492 + #: src/components/dms/ReportDialog.tsx:217 6493 + #: src/components/ReportDialog/SubmitView.tsx:87 6494 + msgid "There was an issue sending your report. Please check your internet connection." 6495 + msgstr "" 6496 + 6497 + #: src/view/com/posts/FeedShutdownMsg.tsx:52 6498 + #: src/view/com/posts/FeedShutdownMsg.tsx:71 6499 + #: src/view/screens/ProfileFeed.tsx:211 6500 + msgid "There was an issue updating your feeds, please check your internet connection and try again." 6501 + msgstr "" 6502 + 6503 + #: src/view/screens/AppPasswords.tsx:66 6504 + msgid "There was an issue with fetching your app passwords" 6505 + msgstr "" 6506 + 6507 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:99 6508 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 6509 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:133 6510 + #: src/view/com/post-thread/PostThreadFollowBtn.tsx:91 6511 + #: src/view/com/post-thread/PostThreadFollowBtn.tsx:102 6512 + #: src/view/com/profile/ProfileMenu.tsx:102 6513 + #: src/view/com/profile/ProfileMenu.tsx:112 6514 + #: src/view/com/profile/ProfileMenu.tsx:126 6515 + #: src/view/com/profile/ProfileMenu.tsx:136 6516 + #: src/view/com/profile/ProfileMenu.tsx:149 6517 + #: src/view/com/profile/ProfileMenu.tsx:161 6518 + msgid "There was an issue! {0}" 6519 + msgstr "" 6520 + 6521 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:182 6522 + #: src/screens/List/ListHiddenScreen.tsx:63 6523 + #: src/screens/List/ListHiddenScreen.tsx:77 6524 + #: src/screens/List/ListHiddenScreen.tsx:99 6525 + #: src/view/screens/ProfileList.tsx:391 6526 + #: src/view/screens/ProfileList.tsx:404 6527 + #: src/view/screens/ProfileList.tsx:417 6528 + #: src/view/screens/ProfileList.tsx:430 6529 + msgid "There was an issue. Please check your internet connection and try again." 6530 + msgstr "" 6531 + 6532 + #: src/components/dialogs/GifSelect.tsx:271 6533 + #: src/view/com/util/ErrorBoundary.tsx:57 6534 + msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" 6535 + msgstr "" 6536 + 6537 + #: src/screens/SignupQueued.tsx:112 6538 + msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." 6539 + msgstr "" 6540 + 6541 + #: src/components/moderation/ScreenHider.tsx:111 6542 + msgid "This {screenDescription} has been flagged:" 6543 + msgstr "" 6544 + 6545 + #: src/components/moderation/ScreenHider.tsx:106 6546 + msgid "This account has requested that users sign in to view their profile." 6547 + msgstr "" 6548 + 6549 + #: src/components/dms/BlockedByListDialog.tsx:34 6550 + msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." 6551 + msgstr "" 6552 + 6553 + #: src/components/moderation/LabelsOnMeDialog.tsx:246 6554 + msgid "This appeal will be sent to <0>{sourceName}</0>." 6555 + msgstr "" 6556 + 6557 + #: src/screens/Messages/components/ChatDisabled.tsx:104 6558 + msgid "This appeal will be sent to Bluesky's moderation service." 6559 + msgstr "" 6560 + 6561 + #: src/screens/Messages/components/MessageListError.tsx:18 6562 + msgid "This chat was disconnected" 6563 + msgstr "" 6564 + 6565 + #: src/lib/moderation/useGlobalLabelStrings.ts:19 6566 + msgid "This content has been hidden by the moderators." 6567 + msgstr "" 6568 + 6569 + #: src/lib/moderation/useGlobalLabelStrings.ts:24 6570 + msgid "This content has received a general warning from moderators." 6571 + msgstr "" 6572 + 6573 + #: src/components/dialogs/EmbedConsent.tsx:63 6574 + msgid "This content is hosted by {0}. Do you want to enable external media?" 6575 + msgstr "" 6576 + 6577 + #: src/components/moderation/ModerationDetailsDialog.tsx:83 6578 + #: src/lib/moderation/useModerationCauseDescription.ts:82 6579 + msgid "This content is not available because one of the users involved has blocked the other." 6580 + msgstr "" 6581 + 6582 + #: src/view/com/posts/FeedErrorMessage.tsx:114 6583 + msgid "This content is not viewable without a Bluesky account." 6584 + msgstr "" 6585 + 6586 + #: src/screens/Messages/components/ChatListItem.tsx:266 6587 + msgid "This conversation is with a deleted or a deactivated account. Press for options." 6588 + msgstr "" 6589 + 6590 + #: src/view/screens/Settings/ExportCarDialog.tsx:92 6591 + msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost</0>." 6592 + msgstr "" 6593 + 6594 + #: src/view/com/posts/FeedErrorMessage.tsx:120 6595 + msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." 6596 + msgstr "" 6597 + 6598 + #: src/view/com/posts/CustomFeedEmptyState.tsx:37 6599 + msgid "This feed is empty! You may need to follow more users or tune your language settings." 6600 + msgstr "" 6601 + 6602 + #: src/components/StarterPack/Main/PostsList.tsx:36 6603 + #: src/view/screens/ProfileFeed.tsx:471 6604 + #: src/view/screens/ProfileList.tsx:779 6605 + msgid "This feed is empty." 6606 + msgstr "" 6607 + 6608 + #: src/view/com/posts/FeedShutdownMsg.tsx:99 6609 + msgid "This feed is no longer online. We are showing <0>Discover</0> instead." 6610 + msgstr "" 6611 + 6612 + #: src/components/dialogs/BirthDateSettings.tsx:40 6613 + msgid "This information is not shared with other users." 6614 + msgstr "" 6615 + 6616 + #: src/view/com/modals/VerifyEmail.tsx:127 6617 + msgid "This is important in case you ever need to change your email or reset your password." 6618 + msgstr "" 6619 + 6620 + #: src/components/moderation/ModerationDetailsDialog.tsx:151 6621 + msgid "This label was applied by <0>{0}</0>." 6622 + msgstr "" 6623 + 6624 + #: src/components/moderation/ModerationDetailsDialog.tsx:146 6625 + msgid "This label was applied by the author." 6626 + msgstr "" 6627 + 6628 + #: src/components/moderation/LabelsOnMeDialog.tsx:163 6629 + msgid "This label was applied by you." 6630 + msgstr "" 6631 + 6632 + #: src/screens/Profile/Sections/Labels.tsx:188 6633 + msgid "This labeler hasn't declared what labels it publishes, and may not be active." 6634 + msgstr "This labeller hasn't declared what labels it publishes, and may not be active." 6635 + 6636 + #: src/view/com/modals/LinkWarning.tsx:72 6637 + msgid "This link is taking you to the following website:" 6638 + msgstr "" 6639 + 6640 + #: src/screens/List/ListHiddenScreen.tsx:136 6641 + msgid "This list - created by <0>{0}</0> - contains possible violations of Bluesky's community guidelines in its name or description." 6642 + msgstr "" 6643 + 6644 + #: src/view/screens/ProfileList.tsx:957 6645 + msgid "This list is empty!" 6646 + msgstr "" 6647 + 6648 + #: src/screens/Profile/ErrorState.tsx:40 6649 + msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." 6650 + msgstr "" 6651 + 6652 + #: src/view/com/modals/AddAppPasswords.tsx:110 6653 + msgid "This name is already in use" 6654 + msgstr "" 6655 + 6656 + #: src/view/com/post-thread/PostThreadItem.tsx:139 6657 + msgid "This post has been deleted." 6658 + msgstr "" 6659 + 6660 + #: src/view/com/util/forms/PostDropdownBtn.tsx:700 6661 + #: src/view/com/util/post-ctrls/PostCtrls.tsx:358 6662 + msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." 6663 + msgstr "" 6664 + 6665 + #: src/view/com/util/forms/PostDropdownBtn.tsx:681 6666 + msgid "This post will be hidden from feeds and threads. This cannot be undone." 6667 + msgstr "" 6668 + 6669 + #: src/view/com/composer/Composer.tsx:406 6670 + msgid "This post's author has disabled quote posts." 6671 + msgstr "" 6672 + 6673 + #: src/view/com/profile/ProfileMenu.tsx:350 6674 + msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in." 6675 + msgstr "" 6676 + 6677 + #: src/view/com/util/forms/PostDropdownBtn.tsx:743 6678 + msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." 6679 + msgstr "" 6680 + 6681 + #: src/screens/Signup/StepInfo/Policies.tsx:37 6682 + msgid "This service has not provided terms of service or a privacy policy." 6683 + msgstr "" 6684 + 6685 + #: src/view/com/modals/ChangeHandle.tsx:432 6686 + msgid "This should create a domain record at:" 6687 + msgstr "" 6688 + 6689 + #: src/view/com/profile/ProfileFollowers.tsx:96 6690 + msgid "This user doesn't have any followers." 6691 + msgstr "" 6692 + 6693 + #: src/components/dms/MessagesListBlockedFooter.tsx:60 6694 + msgid "This user has blocked you" 6695 + msgstr "" 6696 + 6697 + #: src/components/moderation/ModerationDetailsDialog.tsx:78 6698 + #: src/lib/moderation/useModerationCauseDescription.ts:73 6699 + msgid "This user has blocked you. You cannot view their content." 6700 + msgstr "" 6701 + 6702 + #: src/lib/moderation/useGlobalLabelStrings.ts:30 6703 + msgid "This user has requested that their content only be shown to signed-in users." 6704 + msgstr "" 6705 + 6706 + #: src/components/moderation/ModerationDetailsDialog.tsx:58 6707 + msgid "This user is included in the <0>{0}</0> list which you have blocked." 6708 + msgstr "" 6709 + 6710 + #: src/components/moderation/ModerationDetailsDialog.tsx:90 6711 + msgid "This user is included in the <0>{0}</0> list which you have muted." 6712 + msgstr "" 6713 + 6714 + #: src/components/NewskieDialog.tsx:65 6715 + msgid "This user is new here. Press for more info about when they joined." 6716 + msgstr "" 6717 + 6718 + #: src/view/com/profile/ProfileFollows.tsx:96 6719 + msgid "This user isn't following anyone." 6720 + msgstr "" 6721 + 6722 + #: src/components/dialogs/MutedWords.tsx:435 6723 + msgid "This will delete \"{0}\" from your muted words. You can always add it back later." 6724 + msgstr "" 6725 + 6726 + #: src/view/com/util/AccountDropdownBtn.tsx:55 6727 + msgid "This will remove @{0} from the quick access list." 6728 + msgstr "" 6729 + 6730 + #: src/view/com/util/forms/PostDropdownBtn.tsx:733 6731 + msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." 6732 + msgstr "" 6733 + 6734 + #: src/view/screens/Settings/index.tsx:560 6735 + msgid "Thread preferences" 6736 + msgstr "" 6737 + 6738 + #: src/view/screens/PreferencesThreads.tsx:51 6739 + #: src/view/screens/Settings/index.tsx:570 6740 + msgid "Thread Preferences" 6741 + msgstr "" 6742 + 6743 + #: src/view/screens/PreferencesThreads.tsx:113 6744 + msgid "Threaded Mode" 6745 + msgstr "" 6746 + 6747 + #: src/Navigation.tsx:303 6748 + msgid "Threads Preferences" 6749 + msgstr "" 6750 + 6751 + #: src/view/screens/Settings/DisableEmail2FADialog.tsx:101 6752 + msgid "To disable the email 2FA method, please verify your access to the email address." 6753 + msgstr "" 6754 + 6755 + #: src/components/dms/ReportConversationPrompt.tsx:20 6756 + msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." 6757 + msgstr "" 6758 + 6759 + #: src/view/com/composer/videos/SelectVideoBtn.tsx:133 6760 + msgid "To upload videos to Bluesky, you must first verify your email." 6761 + msgstr "" 6762 + 6763 + #: src/components/ReportDialog/SelectLabelerView.tsx:32 6764 + msgid "To whom would you like to send this report?" 6765 + msgstr "" 6766 + 6767 + #: src/components/dms/DateDivider.tsx:44 6768 + msgid "Today" 6769 + msgstr "" 6770 + 6771 + #: src/view/com/util/forms/DropdownButton.tsx:255 6772 + msgid "Toggle dropdown" 6773 + msgstr "" 6774 + 6775 + #: src/screens/Moderation/index.tsx:343 6776 + msgid "Toggle to enable or disable adult content" 6777 + msgstr "" 6778 + 6779 + #: src/screens/Hashtag.tsx:86 6780 + #: src/view/screens/Search/Search.tsx:509 6781 + msgid "Top" 6782 + msgstr "" 6783 + 6784 + #: src/components/dms/MessageMenu.tsx:103 6785 + #: src/components/dms/MessageMenu.tsx:105 6786 + #: src/view/com/post-thread/PostThreadItem.tsx:734 6787 + #: src/view/com/post-thread/PostThreadItem.tsx:736 6788 + #: src/view/com/util/forms/PostDropdownBtn.tsx:422 6789 + #: src/view/com/util/forms/PostDropdownBtn.tsx:424 6790 + msgid "Translate" 6791 + msgstr "" 6792 + 6793 + #: src/view/com/util/error/ErrorScreen.tsx:82 6794 + msgctxt "action" 6795 + msgid "Try again" 6796 + msgstr "" 6797 + 6798 + #: src/screens/Onboarding/state.ts:102 6799 + msgid "TV" 6800 + msgstr "" 6801 + 6802 + #: src/view/screens/Settings/index.tsx:711 6803 + msgid "Two-factor authentication" 6804 + msgstr "" 6805 + 6806 + #: src/screens/Messages/components/MessageInput.tsx:141 6807 + msgid "Type your message here" 6808 + msgstr "" 6809 + 6810 + #: src/view/com/modals/ChangeHandle.tsx:415 6811 + msgid "Type:" 6812 + msgstr "" 6813 + 6814 + #: src/view/screens/ProfileList.tsx:585 6815 + msgid "Un-block list" 6816 + msgstr "" 6817 + 6818 + #: src/view/screens/ProfileList.tsx:570 6819 + msgid "Un-mute list" 6820 + msgstr "" 6821 + 6822 + #: src/screens/Login/ForgotPasswordForm.tsx:68 6823 + #: src/screens/Login/index.tsx:76 6824 + #: src/screens/Login/LoginForm.tsx:152 6825 + #: src/screens/Login/SetNewPasswordForm.tsx:71 6826 + #: src/screens/Signup/index.tsx:71 6827 + #: src/view/com/modals/ChangePassword.tsx:71 6828 + msgid "Unable to contact your service. Please check your Internet connection." 6829 + msgstr "" 6830 + 6831 + #: src/screens/StarterPack/StarterPackScreen.tsx:637 6832 + msgid "Unable to delete" 6833 + msgstr "" 6834 + 6835 + #: src/components/dms/MessagesListBlockedFooter.tsx:89 6836 + #: src/components/dms/MessagesListBlockedFooter.tsx:96 6837 + #: src/components/dms/MessagesListBlockedFooter.tsx:104 6838 + #: src/components/dms/MessagesListBlockedFooter.tsx:111 6839 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:183 6840 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:269 6841 + #: src/view/com/profile/ProfileMenu.tsx:341 6842 + #: src/view/screens/ProfileList.tsx:676 6843 + msgid "Unblock" 6844 + msgstr "" 6845 + 6846 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:188 6847 + msgctxt "action" 6848 + msgid "Unblock" 6849 + msgstr "" 6850 + 6851 + #: src/components/dms/ConvoMenu.tsx:188 6852 + #: src/components/dms/ConvoMenu.tsx:192 6853 + msgid "Unblock account" 6854 + msgstr "" 6855 + 6856 + #: src/view/com/profile/ProfileMenu.tsx:279 6857 + #: src/view/com/profile/ProfileMenu.tsx:285 6858 + msgid "Unblock Account" 6859 + msgstr "" 6860 + 6861 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:263 6862 + #: src/view/com/profile/ProfileMenu.tsx:323 6863 + msgid "Unblock Account?" 6864 + msgstr "" 6865 + 6866 + #: src/view/com/util/post-ctrls/RepostButton.tsx:69 6867 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:72 6868 + #: src/view/com/util/post-ctrls/RepostButton.web.tsx:76 6869 + msgid "Undo repost" 6870 + msgstr "" 6871 + 6872 + #: src/view/com/profile/FollowButton.tsx:61 6873 + msgctxt "action" 6874 + msgid "Unfollow" 6875 + msgstr "" 6876 + 6877 + #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:203 6878 + msgid "Unfollow {0}" 6879 + msgstr "" 6880 + 6881 + #: src/view/com/profile/ProfileMenu.tsx:221 6882 + #: src/view/com/profile/ProfileMenu.tsx:231 6883 + msgid "Unfollow Account" 6884 + msgstr "" 6885 + 6886 + #: src/view/screens/ProfileFeed.tsx:569 6887 + msgid "Unlike this feed" 6888 + msgstr "" 6889 + 6890 + #: src/components/TagMenu/index.tsx:262 6891 + #: src/view/screens/ProfileList.tsx:683 6892 + msgid "Unmute" 6893 + msgstr "" 6894 + 6895 + #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 6896 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VolumeControl.tsx:93 6897 + msgctxt "video" 6898 + msgid "Unmute" 6899 + msgstr "" 6900 + 6901 + #: src/components/TagMenu/index.web.tsx:115 6902 + msgid "Unmute {truncatedTag}" 6903 + msgstr "" 6904 + 6905 + #: src/view/com/profile/ProfileMenu.tsx:258 6906 + #: src/view/com/profile/ProfileMenu.tsx:264 6907 + msgid "Unmute Account" 6908 + msgstr "" 6909 + 6910 + #: src/components/TagMenu/index.tsx:218 6911 + msgid "Unmute all {displayTag} posts" 6912 + msgstr "" 6913 + 6914 + #: src/components/dms/ConvoMenu.tsx:176 6915 + msgid "Unmute conversation" 6916 + msgstr "" 6917 + 6918 + #: src/view/com/util/forms/PostDropdownBtn.tsx:507 6919 + #: src/view/com/util/forms/PostDropdownBtn.tsx:512 6920 + msgid "Unmute thread" 6921 + msgstr "" 6922 + 6923 + #: src/view/com/util/post-embeds/VideoEmbedInner/web-controls/VideoControls.tsx:321 6924 + msgid "Unmute video" 6925 + msgstr "" 6926 + 6927 + #: src/view/screens/ProfileFeed.tsx:289 6928 + #: src/view/screens/ProfileList.tsx:667 6929 + msgid "Unpin" 6930 + msgstr "" 6931 + 6932 + #: src/view/screens/ProfileFeed.tsx:286 6933 + msgid "Unpin from home" 6934 + msgstr "" 6935 + 6936 + #: src/view/com/util/forms/PostDropdownBtn.tsx:397 6937 + #: src/view/com/util/forms/PostDropdownBtn.tsx:404 6938 + msgid "Unpin from profile" 6939 + msgstr "" 6940 + 6941 + #: src/view/screens/ProfileList.tsx:550 6942 + msgid "Unpin moderation list" 6943 + msgstr "" 6944 + 6945 + #: src/view/screens/ProfileList.tsx:347 6946 + msgid "Unpinned from your feeds" 6947 + msgstr "" 6948 + 6949 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:223 6950 + msgid "Unsubscribe" 6951 + msgstr "" 6952 + 6953 + #: src/screens/List/ListHiddenScreen.tsx:184 6954 + #: src/screens/List/ListHiddenScreen.tsx:194 6955 + msgid "Unsubscribe from list" 6956 + msgstr "" 6957 + 6958 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:190 6959 + msgid "Unsubscribe from this labeler" 6960 + msgstr "" 6961 + 6962 + #: src/screens/List/ListHiddenScreen.tsx:86 6963 + msgid "Unsubscribed from list" 6964 + msgstr "" 6965 + 6966 + #: src/view/com/composer/videos/SelectVideoBtn.tsx:72 6967 + msgid "Unsupported video type: {mimeType}" 6968 + msgstr "" 6969 + 6970 + #: src/lib/moderation/useReportOptions.ts:77 6971 + #: src/lib/moderation/useReportOptions.ts:90 6972 + msgid "Unwanted Sexual Content" 6973 + msgstr "" 6974 + 6975 + #: src/view/com/modals/UserAddRemoveLists.tsx:82 6976 + msgid "Update <0>{displayName}</0> in Lists" 6977 + msgstr "" 6978 + 6979 + #: src/view/com/modals/ChangeHandle.tsx:495 6980 + msgid "Update to {handle}" 6981 + msgstr "" 6982 + 6983 + #: src/view/com/util/forms/PostDropdownBtn.tsx:311 6984 + msgid "Updating quote attachment failed" 6985 + msgstr "" 6986 + 6987 + #: src/view/com/util/forms/PostDropdownBtn.tsx:341 6988 + msgid "Updating reply visibility failed" 6989 + msgstr "" 6990 + 6991 + #: src/screens/Login/SetNewPasswordForm.tsx:180 6992 + msgid "Updating..." 6993 + msgstr "" 6994 + 6995 + #: src/screens/Onboarding/StepProfile/index.tsx:290 6996 + msgid "Upload a photo instead" 6997 + msgstr "" 6998 + 6999 + #: src/view/com/modals/ChangeHandle.tsx:441 7000 + msgid "Upload a text file to:" 7001 + msgstr "" 7002 + 7003 + #: src/view/com/util/UserAvatar.tsx:371 7004 + #: src/view/com/util/UserAvatar.tsx:374 7005 + #: src/view/com/util/UserBanner.tsx:123 7006 + #: src/view/com/util/UserBanner.tsx:126 7007 + msgid "Upload from Camera" 7008 + msgstr "" 7009 + 7010 + #: src/view/com/util/UserAvatar.tsx:388 7011 + #: src/view/com/util/UserBanner.tsx:140 7012 + msgid "Upload from Files" 7013 + msgstr "" 7014 + 7015 + #: src/view/com/util/UserAvatar.tsx:382 7016 + #: src/view/com/util/UserAvatar.tsx:386 7017 + #: src/view/com/util/UserBanner.tsx:134 7018 + #: src/view/com/util/UserBanner.tsx:138 7019 + msgid "Upload from Library" 7020 + msgstr "" 7021 + 7022 + #: src/lib/api/index.ts:252 7023 + msgid "Uploading images..." 7024 + msgstr "" 7025 + 7026 + #: src/lib/api/index.ts:306 7027 + #: src/lib/api/index.ts:330 7028 + msgid "Uploading link thumbnail..." 7029 + msgstr "" 7030 + 7031 + #: src/view/com/composer/Composer.tsx:1170 7032 + msgid "Uploading video..." 7033 + msgstr "" 7034 + 7035 + #: src/view/com/modals/ChangeHandle.tsx:395 7036 + msgid "Use a file on your server" 7037 + msgstr "" 7038 + 7039 + #: src/view/screens/AppPasswords.tsx:196 7040 + msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." 7041 + msgstr "" 7042 + 7043 + #: src/view/com/modals/ChangeHandle.tsx:506 7044 + msgid "Use bsky.social as hosting provider" 7045 + msgstr "" 7046 + 7047 + #: src/view/com/modals/ChangeHandle.tsx:505 7048 + msgid "Use default provider" 7049 + msgstr "" 7050 + 7051 + #: src/view/com/modals/InAppBrowserConsent.tsx:53 7052 + #: src/view/com/modals/InAppBrowserConsent.tsx:55 7053 + msgid "Use in-app browser" 7054 + msgstr "" 7055 + 7056 + #: src/view/com/modals/InAppBrowserConsent.tsx:63 7057 + #: src/view/com/modals/InAppBrowserConsent.tsx:65 7058 + msgid "Use my default browser" 7059 + msgstr "" 7060 + 7061 + #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 7062 + msgid "Use recommended" 7063 + msgstr "" 7064 + 7065 + #: src/view/com/modals/ChangeHandle.tsx:387 7066 + msgid "Use the DNS panel" 7067 + msgstr "" 7068 + 7069 + #: src/view/com/modals/AddAppPasswords.tsx:206 7070 + msgid "Use this to sign into the other app along with your handle." 7071 + msgstr "" 7072 + 7073 + #: src/view/com/modals/InviteCodes.tsx:201 7074 + msgid "Used by:" 7075 + msgstr "" 7076 + 7077 + #: src/components/moderation/ModerationDetailsDialog.tsx:70 7078 + #: src/lib/moderation/useModerationCauseDescription.ts:61 7079 + msgid "User Blocked" 7080 + msgstr "" 7081 + 7082 + #: src/lib/moderation/useModerationCauseDescription.ts:53 7083 + msgid "User Blocked by \"{0}\"" 7084 + msgstr "" 7085 + 7086 + #: src/components/dms/BlockedByListDialog.tsx:27 7087 + msgid "User blocked by list" 7088 + msgstr "" 7089 + 7090 + #: src/components/moderation/ModerationDetailsDialog.tsx:56 7091 + msgid "User Blocked by List" 7092 + msgstr "" 7093 + 7094 + #: src/lib/moderation/useModerationCauseDescription.ts:71 7095 + msgid "User Blocking You" 7096 + msgstr "" 7097 + 7098 + #: src/components/moderation/ModerationDetailsDialog.tsx:76 7099 + msgid "User Blocks You" 7100 + msgstr "" 7101 + 7102 + #: src/view/com/modals/UserAddRemoveLists.tsx:214 7103 + msgid "User list by {0}" 7104 + msgstr "" 7105 + 7106 + #: src/view/screens/ProfileList.tsx:881 7107 + msgid "User list by <0/>" 7108 + msgstr "" 7109 + 7110 + #: src/view/com/modals/UserAddRemoveLists.tsx:212 7111 + #: src/view/screens/ProfileList.tsx:879 7112 + msgid "User list by you" 7113 + msgstr "" 7114 + 7115 + #: src/view/com/modals/CreateOrEditList.tsx:176 7116 + msgid "User list created" 7117 + msgstr "" 7118 + 7119 + #: src/view/com/modals/CreateOrEditList.tsx:162 7120 + msgid "User list updated" 7121 + msgstr "" 7122 + 7123 + #: src/view/screens/Lists.tsx:65 7124 + msgid "User Lists" 7125 + msgstr "" 7126 + 7127 + #: src/screens/Login/LoginForm.tsx:183 7128 + msgid "Username or email address" 7129 + msgstr "" 7130 + 7131 + #: src/view/screens/ProfileList.tsx:915 7132 + msgid "Users" 7133 + msgstr "" 7134 + 7135 + #: src/components/WhoCanReply.tsx:258 7136 + msgid "users followed by <0>@{0}</0>" 7137 + msgstr "" 7138 + 7139 + #: src/screens/Messages/Settings.tsx:84 7140 + #: src/screens/Messages/Settings.tsx:87 7141 + msgid "Users I follow" 7142 + msgstr "" 7143 + 7144 + #: src/components/dialogs/PostInteractionSettingsDialog.tsx:417 7145 + msgid "Users in \"{0}\"" 7146 + msgstr "" 7147 + 7148 + #: src/components/LikesDialog.tsx:83 7149 + msgid "Users that have liked this content or profile" 7150 + msgstr "" 7151 + 7152 + #: src/view/com/modals/ChangeHandle.tsx:423 7153 + msgid "Value:" 7154 + msgstr "" 7155 + 7156 + #: src/view/com/composer/videos/SelectVideoBtn.tsx:131 7157 + msgid "Verified email required" 7158 + msgstr "" 7159 + 7160 + #: src/view/com/modals/ChangeHandle.tsx:497 7161 + msgid "Verify DNS Record" 7162 + msgstr "" 7163 + 7164 + #: src/view/screens/Settings/index.tsx:936 7165 + msgid "Verify email" 7166 + msgstr "" 7167 + 7168 + #: src/components/dialogs/VerifyEmailDialog.tsx:120 7169 + #: src/components/intents/VerifyEmailIntentDialog.tsx:67 7170 + msgid "Verify email dialog" 7171 + msgstr "" 7172 + 7173 + #: src/view/screens/Settings/index.tsx:961 7174 + msgid "Verify my email" 7175 + msgstr "" 7176 + 7177 + #: src/view/screens/Settings/index.tsx:970 7178 + msgid "Verify My Email" 7179 + msgstr "" 7180 + 7181 + #: src/view/com/modals/ChangeEmail.tsx:200 7182 + #: src/view/com/modals/ChangeEmail.tsx:202 7183 + msgid "Verify New Email" 7184 + msgstr "" 7185 + 7186 + #: src/view/com/composer/videos/SelectVideoBtn.tsx:135 7187 + msgid "Verify now" 7188 + msgstr "" 7189 + 7190 + #: src/view/com/modals/ChangeHandle.tsx:498 7191 + msgid "Verify Text File" 7192 + msgstr "" 7193 + 7194 + #: src/components/dialogs/VerifyEmailDialog.tsx:71 7195 + #: src/view/com/modals/VerifyEmail.tsx:111 7196 + msgid "Verify Your Email" 7197 + msgstr "" 7198 + 7199 + #: src/view/screens/Settings/index.tsx:889 7200 + msgid "Version {appVersion} {bundleInfo}" 7201 + msgstr "" 7202 + 7203 + #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 7204 + #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:135 7205 + msgid "Video" 7206 + msgstr "" 7207 + 7208 + #: src/view/com/composer/state/video.ts:372 7209 + msgid "Video failed to process" 7210 + msgstr "" 7211 + 7212 + #: src/screens/Onboarding/index.tsx:39 7213 + #: src/screens/Onboarding/state.ts:90 7214 + msgid "Video Games" 7215 + msgstr "" 7216 + 7217 + #: src/view/com/util/post-embeds/VideoEmbed.web.tsx:167 7218 + msgid "Video not found." 7219 + msgstr "" 7220 + 7221 + #: src/view/com/composer/videos/SubtitleDialog.tsx:99 7222 + msgid "Video settings" 7223 + msgstr "" 7224 + 7225 + #: src/view/com/composer/Composer.tsx:1180 7226 + msgid "Video uploaded" 7227 + msgstr "" 7228 + 7229 + #: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:84 7230 + msgid "Video: {0}" 7231 + msgstr "" 7232 + 7233 + #: src/view/com/composer/videos/SelectVideoBtn.tsx:79 7234 + #: src/view/com/composer/videos/VideoPreview.web.tsx:44 7235 + msgid "Videos must be less than 60 seconds long" 7236 + msgstr "" 7237 + 7238 + #: src/screens/Profile/Header/Shell.tsx:128 7239 + msgid "View {0}'s avatar" 7240 + msgstr "" 7241 + 7242 + #: src/components/ProfileCard.tsx:110 7243 + #: src/view/com/notifications/FeedItem.tsx:273 7244 + msgid "View {0}'s profile" 7245 + msgstr "" 7246 + 7247 + #: src/components/dms/MessagesListHeader.tsx:160 7248 + msgid "View {displayName}'s profile" 7249 + msgstr "" 7250 + 7251 + #: src/components/TagMenu/index.tsx:149 7252 + msgid "View all posts by @{authorHandle} with tag {displayTag}" 7253 + msgstr "" 7254 + 7255 + #: src/components/TagMenu/index.tsx:103 7256 + msgid "View all posts with tag {displayTag}" 7257 + msgstr "" 7258 + 7259 + #: src/components/ProfileHoverCard/index.web.tsx:433 7260 + msgid "View blocked user's profile" 7261 + msgstr "" 7262 + 7263 + #: src/view/screens/Settings/ExportCarDialog.tsx:96 7264 + msgid "View blogpost for more details" 7265 + msgstr "" 7266 + 7267 + #: src/view/screens/Log.tsx:56 7268 + msgid "View debug entry" 7269 + msgstr "" 7270 + 7271 + #: src/components/ReportDialog/SelectReportOptionView.tsx:139 7272 + msgid "View details" 7273 + msgstr "" 7274 + 7275 + #: src/components/ReportDialog/SelectReportOptionView.tsx:134 7276 + msgid "View details for reporting a copyright violation" 7277 + msgstr "" 7278 + 7279 + #: src/view/com/posts/FeedSlice.tsx:136 7280 + msgid "View full thread" 7281 + msgstr "" 7282 + 7283 + #: src/components/moderation/LabelsOnMe.tsx:47 7284 + msgid "View information about these labels" 7285 + msgstr "" 7286 + 7287 + #: src/components/ProfileHoverCard/index.web.tsx:419 7288 + #: src/components/ProfileHoverCard/index.web.tsx:439 7289 + #: src/components/ProfileHoverCard/index.web.tsx:466 7290 + #: src/view/com/posts/AviFollowButton.tsx:55 7291 + #: src/view/com/posts/FeedErrorMessage.tsx:175 7292 + #: src/view/com/util/PostMeta.tsx:77 7293 + #: src/view/com/util/PostMeta.tsx:92 7294 + msgid "View profile" 7295 + msgstr "" 7296 + 7297 + #: src/view/com/profile/ProfileSubpageHeader.tsx:127 7298 + msgid "View the avatar" 7299 + msgstr "" 7300 + 7301 + #: src/components/LabelingServiceCard/index.tsx:162 7302 + msgid "View the labeling service provided by @{0}" 7303 + msgstr "" 7304 + 7305 + #: src/view/screens/ProfileFeed.tsx:581 7306 + msgid "View users who like this feed" 7307 + msgstr "" 7308 + 7309 + #: src/screens/Moderation/index.tsx:272 7310 + msgid "View your blocked accounts" 7311 + msgstr "" 7312 + 7313 + #: src/view/com/home/HomeHeaderLayout.web.tsx:78 7314 + #: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 7315 + msgid "View your feeds and explore more" 7316 + msgstr "" 7317 + 7318 + #: src/screens/Moderation/index.tsx:242 7319 + msgid "View your moderation lists" 7320 + msgstr "" 7321 + 7322 + #: src/screens/Moderation/index.tsx:257 7323 + msgid "View your muted accounts" 7324 + msgstr "" 7325 + 7326 + #: src/view/com/modals/LinkWarning.tsx:89 7327 + #: src/view/com/modals/LinkWarning.tsx:95 7328 + msgid "Visit Site" 7329 + msgstr "" 7330 + 7331 + #: src/components/moderation/LabelPreference.tsx:135 7332 + #: src/lib/moderation/useLabelBehaviorDescription.ts:17 7333 + #: src/lib/moderation/useLabelBehaviorDescription.ts:22 7334 + msgid "Warn" 7335 + msgstr "" 7336 + 7337 + #: src/lib/moderation/useLabelBehaviorDescription.ts:48 7338 + msgid "Warn content" 7339 + msgstr "" 7340 + 7341 + #: src/lib/moderation/useLabelBehaviorDescription.ts:46 7342 + msgid "Warn content and filter from feeds" 7343 + msgstr "" 7344 + 7345 + #: src/screens/Hashtag.tsx:217 7346 + msgid "We couldn't find any results for that hashtag." 7347 + msgstr "" 7348 + 7349 + #: src/screens/Messages/Conversation.tsx:107 7350 + msgid "We couldn't load this conversation" 7351 + msgstr "" 7352 + 7353 + #: src/screens/SignupQueued.tsx:139 7354 + msgid "We estimate {estimatedTime} until your account is ready." 7355 + msgstr "" 7356 + 7357 + #: src/components/intents/VerifyEmailIntentDialog.tsx:107 7358 + msgid "We have sent another verification email to <0>{0}</0>." 7359 + msgstr "" 7360 + 7361 + #: src/screens/Onboarding/StepFinished.tsx:229 7362 + msgid "We hope you have a wonderful time. Remember, Bluesky is:" 7363 + msgstr "" 7364 + 7365 + #: src/view/com/posts/DiscoverFallbackHeader.tsx:29 7366 + msgid "We ran out of posts from your follows. Here's the latest from <0/>." 7367 + msgstr "" 7368 + 7369 + #: src/view/com/composer/state/video.ts:431 7370 + msgid "We were unable to determine if you are allowed to upload videos. Please try again." 7371 + msgstr "" 7372 + 7373 + #: src/components/dialogs/BirthDateSettings.tsx:51 7374 + msgid "We were unable to load your birth date preferences. Please try again." 7375 + msgstr "" 7376 + 7377 + #: src/screens/Moderation/index.tsx:417 7378 + msgid "We were unable to load your configured labelers at this time." 7379 + msgstr "We were unable to load your configured labellers at this time." 7380 + 7381 + #: src/screens/Onboarding/StepInterests/index.tsx:129 7382 + msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." 7383 + msgstr "" 7384 + 7385 + #: src/screens/SignupQueued.tsx:143 7386 + msgid "We will let you know when your account is ready." 7387 + msgstr "" 7388 + 7389 + #: src/screens/Onboarding/StepInterests/index.tsx:134 7390 + msgid "We'll use this to help customize your experience." 7391 + msgstr "We'll use this to help customise your experience." 7392 + 7393 + #: src/components/dms/dialogs/SearchablePeopleList.tsx:87 7394 + msgid "We're having network issues, try again" 7395 + msgstr "" 7396 + 7397 + #: src/components/dialogs/nuxs/NeueTypography.tsx:54 7398 + msgid "We're introducing a new theme font, along with adjustable font sizing." 7399 + msgstr "" 7400 + 7401 + #: src/screens/Signup/index.tsx:94 7402 + msgid "We're so excited to have you join us!" 7403 + msgstr "" 7404 + 7405 + #: src/view/screens/ProfileList.tsx:104 7406 + msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." 7407 + msgstr "" 7408 + 7409 + #: src/components/dialogs/MutedWords.tsx:378 7410 + msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." 7411 + msgstr "" 7412 + 7413 + #: src/view/screens/Search/Search.tsx:211 7414 + msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." 7415 + msgstr "" 7416 + 7417 + #: src/view/com/composer/Composer.tsx:403 7418 + msgid "We're sorry! The post you are replying to has been deleted." 7419 + msgstr "" 7420 + 7421 + #: src/components/Lists.tsx:220 7422 + #: src/view/screens/NotFound.tsx:48 7423 + msgid "We're sorry! We can't find the page you were looking for." 7424 + msgstr "" 7425 + 7426 + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:328 7427 + msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." 7428 + msgstr "We're sorry! You can only subscribe to twenty labellers, and you've reached your limit of twenty." 7429 + 7430 + #: src/screens/Deactivated.tsx:128 7431 + msgid "Welcome back!" 7432 + msgstr "" 7433 + 7434 + #: src/components/NewskieDialog.tsx:103 7435 + msgid "Welcome, friend!" 7436 + msgstr "" 7437 + 7438 + #: src/screens/Onboarding/StepInterests/index.tsx:126 7439 + msgid "What are your interests?" 7440 + msgstr "" 7441 + 7442 + #: src/screens/StarterPack/Wizard/StepDetails.tsx:42 7443 + msgid "What do you want to call your starter pack?" 7444 + msgstr "" 7445 + 7446 + #: src/view/com/auth/SplashScreen.tsx:39 7447 + #: src/view/com/auth/SplashScreen.web.tsx:98 7448 + #: src/view/com/composer/Composer.tsx:490 7449 + msgid "What's up?" 7450 + msgstr "" 7451 + 7452 + #: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:79 7453 + msgid "Which languages are used in this post?" 7454 + msgstr "" 7455 + 7456 + #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:78 7457 + msgid "Which languages would you like to see in your algorithmic feeds?" 7458 + msgstr "" 7459 + 7460 + #: src/components/WhoCanReply.tsx:179 7461 + msgid "Who can interact with this post?" 7462 + msgstr "" 7463 + 7464 + #: src/components/WhoCanReply.tsx:87 7465 + msgid "Who can reply" 7466 + msgstr "" 7467 + 7468 + #: src/screens/Home/NoFeedsPinned.tsx:79 7469 + #: src/screens/Messages/ChatList.tsx:182 7470 + msgid "Whoops!" 7471 + msgstr "" 7472 + 7473 + #: src/components/ReportDialog/SelectReportOptionView.tsx:44 7474 + msgid "Why should this content be reviewed?" 7475 + msgstr "" 7476 + 7477 + #: src/components/ReportDialog/SelectReportOptionView.tsx:57 7478 + msgid "Why should this feed be reviewed?" 7479 + msgstr "" 7480 + 7481 + #: src/components/ReportDialog/SelectReportOptionView.tsx:54 7482 + msgid "Why should this list be reviewed?" 7483 + msgstr "" 7484 + 7485 + #: src/components/ReportDialog/SelectReportOptionView.tsx:63 7486 + msgid "Why should this message be reviewed?" 7487 + msgstr "" 7488 + 7489 + #: src/components/ReportDialog/SelectReportOptionView.tsx:51 7490 + msgid "Why should this post be reviewed?" 7491 + msgstr "" 7492 + 7493 + #: src/components/ReportDialog/SelectReportOptionView.tsx:60 7494 + msgid "Why should this starter pack be reviewed?" 7495 + msgstr "" 7496 + 7497 + #: src/components/ReportDialog/SelectReportOptionView.tsx:48 7498 + msgid "Why should this user be reviewed?" 7499 + msgstr "" 7500 + 7501 + #: src/screens/Messages/components/MessageInput.tsx:142 7502 + #: src/screens/Messages/components/MessageInput.web.tsx:198 7503 + msgid "Write a message" 7504 + msgstr "" 7505 + 7506 + #: src/view/com/composer/Composer.tsx:662 7507 + msgid "Write post" 7508 + msgstr "" 7509 + 7510 + #: src/view/com/composer/Composer.tsx:489 7511 + #: src/view/com/post-thread/PostThreadComposePrompt.tsx:75 7512 + msgid "Write your reply" 7513 + msgstr "" 7514 + 7515 + #: src/screens/Onboarding/index.tsx:25 7516 + #: src/screens/Onboarding/state.ts:103 7517 + msgid "Writers" 7518 + msgstr "" 7519 + 7520 + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 7521 + #: src/view/screens/PreferencesFollowingFeed.tsx:70 7522 + #: src/view/screens/PreferencesFollowingFeed.tsx:97 7523 + #: src/view/screens/PreferencesFollowingFeed.tsx:132 7524 + #: src/view/screens/PreferencesFollowingFeed.tsx:167 7525 + #: src/view/screens/PreferencesThreads.tsx:100 7526 + #: src/view/screens/PreferencesThreads.tsx:123 7527 + msgid "Yes" 7528 + msgstr "" 7529 + 7530 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 7531 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 7532 + msgid "Yes, deactivate" 7533 + msgstr "" 7534 + 7535 + #: src/screens/StarterPack/StarterPackScreen.tsx:649 7536 + msgid "Yes, delete this starter pack" 7537 + msgstr "" 7538 + 7539 + #: src/view/com/util/forms/PostDropdownBtn.tsx:736 7540 + msgid "Yes, detach" 7541 + msgstr "" 7542 + 7543 + #: src/view/com/util/forms/PostDropdownBtn.tsx:746 7544 + msgid "Yes, hide" 7545 + msgstr "" 7546 + 7547 + #: src/screens/Deactivated.tsx:150 7548 + msgid "Yes, reactivate my account" 7549 + msgstr "" 7550 + 7551 + #: src/components/dms/DateDivider.tsx:46 7552 + msgid "Yesterday" 7553 + msgstr "" 7554 + 7555 + #: src/screens/List/ListHiddenScreen.tsx:140 7556 + msgid "you" 7557 + msgstr "" 7558 + 7559 + #: src/components/NewskieDialog.tsx:43 7560 + msgid "You" 7561 + msgstr "" 7562 + 7563 + #: src/screens/SignupQueued.tsx:136 7564 + msgid "You are in line." 7565 + msgstr "" 7566 + 7567 + #: src/view/com/composer/state/video.ts:424 7568 + msgid "You are not allowed to upload videos." 7569 + msgstr "" 7570 + 7571 + #: src/view/com/profile/ProfileFollows.tsx:95 7572 + msgid "You are not following anyone." 7573 + msgstr "" 7574 + 7575 + #: src/components/dialogs/nuxs/NeueTypography.tsx:61 7576 + msgid "You can adjust these in your Appearance Settings later." 7577 + msgstr "" 7578 + 7579 + #: src/view/com/posts/FollowingEmptyState.tsx:63 7580 + #: src/view/com/posts/FollowingEndOfFeed.tsx:64 7581 + msgid "You can also discover new Custom Feeds to follow." 7582 + msgstr "" 7583 + 7584 + #: src/view/com/modals/DeleteAccount.tsx:202 7585 + msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." 7586 + msgstr "" 7587 + 7588 + #: src/screens/Messages/Settings.tsx:111 7589 + msgid "You can continue ongoing conversations regardless of which setting you choose." 7590 + msgstr "" 7591 + 7592 + #: src/screens/Login/index.tsx:155 7593 + #: src/screens/Login/PasswordUpdatedForm.tsx:27 7594 + msgid "You can now sign in with your new password." 7595 + msgstr "" 7596 + 7597 + #: src/screens/Deactivated.tsx:136 7598 + msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." 7599 + msgstr "" 7600 + 7601 + #: src/view/com/profile/ProfileFollowers.tsx:95 7602 + msgid "You do not have any followers." 7603 + msgstr "" 7604 + 7605 + #: src/screens/Profile/KnownFollowers.tsx:99 7606 + msgid "You don't follow any users who follow @{name}." 7607 + msgstr "" 7608 + 7609 + #: src/view/com/modals/InviteCodes.tsx:67 7610 + msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." 7611 + msgstr "" 7612 + 7613 + #: src/view/screens/SavedFeeds.tsx:145 7614 + msgid "You don't have any pinned feeds." 7615 + msgstr "" 7616 + 7617 + #: src/view/screens/SavedFeeds.tsx:186 7618 + msgid "You don't have any saved feeds." 7619 + msgstr "" 7620 + 7621 + #: src/view/com/post-thread/PostThread.tsx:214 7622 + msgid "You have blocked the author or you have been blocked by the author." 7623 + msgstr "" 7624 + 7625 + #: src/components/dms/MessagesListBlockedFooter.tsx:58 7626 + msgid "You have blocked this user" 7627 + msgstr "" 7628 + 7629 + #: src/components/moderation/ModerationDetailsDialog.tsx:72 7630 + #: src/lib/moderation/useModerationCauseDescription.ts:55 7631 + #: src/lib/moderation/useModerationCauseDescription.ts:63 7632 + msgid "You have blocked this user. You cannot view their content." 7633 + msgstr "" 7634 + 7635 + #: src/screens/Login/SetNewPasswordForm.tsx:48 7636 + #: src/screens/Login/SetNewPasswordForm.tsx:85 7637 + #: src/view/com/modals/ChangePassword.tsx:88 7638 + #: src/view/com/modals/ChangePassword.tsx:122 7639 + msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." 7640 + msgstr "" 7641 + 7642 + #: src/lib/moderation/useModerationCauseDescription.ts:114 7643 + msgid "You have hidden this post" 7644 + msgstr "" 7645 + 7646 + #: src/components/moderation/ModerationDetailsDialog.tsx:110 7647 + msgid "You have hidden this post." 7648 + msgstr "" 7649 + 7650 + #: src/components/moderation/ModerationDetailsDialog.tsx:103 7651 + #: src/lib/moderation/useModerationCauseDescription.ts:97 7652 + msgid "You have muted this account." 7653 + msgstr "" 7654 + 7655 + #: src/lib/moderation/useModerationCauseDescription.ts:91 7656 + msgid "You have muted this user" 7657 + msgstr "" 7658 + 7659 + #: src/screens/Messages/ChatList.tsx:222 7660 + msgid "You have no conversations yet. Start one!" 7661 + msgstr "" 7662 + 7663 + #: src/view/com/feeds/ProfileFeedgens.tsx:138 7664 + msgid "You have no feeds." 7665 + msgstr "" 7666 + 7667 + #: src/view/com/lists/MyLists.tsx:90 7668 + #: src/view/com/lists/ProfileLists.tsx:134 7669 + msgid "You have no lists." 7670 + msgstr "" 7671 + 7672 + #: src/view/screens/ModerationBlockedAccounts.tsx:131 7673 + 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." 7674 + msgstr "" 7675 + 7676 + #: src/view/screens/AppPasswords.tsx:87 7677 + msgid "You have not created any app passwords yet. You can create one by pressing the button below." 7678 + msgstr "" 7679 + 7680 + #: src/view/screens/ModerationMutedAccounts.tsx:130 7681 + msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." 7682 + msgstr "" 7683 + 7684 + #: src/components/Lists.tsx:52 7685 + msgid "You have reached the end" 7686 + msgstr "" 7687 + 7688 + #: src/lib/media/video/upload.shared.ts:56 7689 + msgid "You have temporarily reached the limit for video uploads. Please try again later." 7690 + msgstr "" 7691 + 7692 + #: src/components/StarterPack/ProfileStarterPacks.tsx:236 7693 + msgid "You haven't created a starter pack yet!" 7694 + msgstr "" 7695 + 7696 + #: src/components/dialogs/MutedWords.tsx:398 7697 + msgid "You haven't muted any words or tags yet" 7698 + msgstr "" 7699 + 7700 + #: src/components/moderation/ModerationDetailsDialog.tsx:117 7701 + #: src/lib/moderation/useModerationCauseDescription.ts:125 7702 + msgid "You hid this reply." 7703 + msgstr "" 7704 + 7705 + #: src/components/moderation/LabelsOnMeDialog.tsx:78 7706 + msgid "You may appeal non-self labels if you feel they were placed in error." 7707 + msgstr "" 7708 + 7709 + #: src/components/moderation/LabelsOnMeDialog.tsx:83 7710 + msgid "You may appeal these labels if you feel they were placed in error." 7711 + msgstr "" 7712 + 7713 + #: src/screens/StarterPack/Wizard/State.tsx:79 7714 + msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles" 7715 + msgstr "" 7716 + 7717 + #: src/screens/StarterPack/Wizard/State.tsx:97 7718 + msgid "You may only add up to 3 feeds" 7719 + msgstr "" 7720 + 7721 + #: src/lib/media/picker.shared.ts:22 7722 + msgid "You may only select up to 4 images" 7723 + msgstr "" 7724 + 7725 + #: src/screens/Signup/StepInfo/Policies.tsx:106 7726 + msgid "You must be 13 years of age or older to sign up." 7727 + msgstr "" 7728 + 7729 + #: src/components/StarterPack/ProfileStarterPacks.tsx:307 7730 + msgid "You must be following at least seven other people to generate a starter pack." 7731 + msgstr "" 7732 + 7733 + #: src/components/StarterPack/QrCodeDialog.tsx:60 7734 + msgid "You must grant access to your photo library to save a QR code" 7735 + msgstr "" 7736 + 7737 + #: src/components/StarterPack/ShareDialog.tsx:69 7738 + msgid "You must grant access to your photo library to save the image." 7739 + msgstr "" 7740 + 7741 + #: src/components/ReportDialog/SubmitView.tsx:210 7742 + msgid "You must select at least one labeler for a report" 7743 + msgstr "You must select at least one labeller for a report" 7744 + 7745 + #: src/screens/Deactivated.tsx:131 7746 + msgid "You previously deactivated @{0}." 7747 + msgstr "" 7748 + 7749 + #: src/view/com/util/forms/PostDropdownBtn.tsx:222 7750 + msgid "You will no longer receive notifications for this thread" 7751 + msgstr "" 7752 + 7753 + #: src/view/com/util/forms/PostDropdownBtn.tsx:218 7754 + msgid "You will now receive notifications for this thread" 7755 + msgstr "" 7756 + 7757 + #: src/screens/Login/SetNewPasswordForm.tsx:98 7758 + msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." 7759 + msgstr "" 7760 + 7761 + #: src/screens/Messages/components/ChatListItem.tsx:124 7762 + msgid "You: {0}" 7763 + msgstr "" 7764 + 7765 + #: src/screens/Messages/components/ChatListItem.tsx:153 7766 + msgid "You: {defaultEmbeddedContentMessage}" 7767 + msgstr "" 7768 + 7769 + #: src/screens/Messages/components/ChatListItem.tsx:146 7770 + msgid "You: {short}" 7771 + msgstr "" 7772 + 7773 + #: src/screens/Signup/index.tsx:107 7774 + msgid "You'll follow the suggested users and feeds once you finish creating your account!" 7775 + msgstr "" 7776 + 7777 + #: src/screens/Signup/index.tsx:112 7778 + msgid "You'll follow the suggested users once you finish creating your account!" 7779 + msgstr "" 7780 + 7781 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 7782 + msgid "You'll follow these people and {0} others" 7783 + msgstr "" 7784 + 7785 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 7786 + msgid "You'll follow these people right away" 7787 + msgstr "" 7788 + 7789 + #: src/components/dialogs/VerifyEmailDialog.tsx:138 7790 + msgid "You'll receive an email at <0>{0}</0> to verify it's you." 7791 + msgstr "" 7792 + 7793 + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:270 7794 + msgid "You'll stay updated with these feeds" 7795 + msgstr "" 7796 + 7797 + #: src/screens/SignupQueued.tsx:93 7798 + #: src/screens/SignupQueued.tsx:94 7799 + #: src/screens/SignupQueued.tsx:109 7800 + msgid "You're in line" 7801 + msgstr "" 7802 + 7803 + #: src/screens/Deactivated.tsx:89 7804 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 7805 + msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." 7806 + msgstr "" 7807 + 7808 + #: src/screens/Onboarding/StepFinished.tsx:226 7809 + msgid "You're ready to go!" 7810 + msgstr "" 7811 + 7812 + #: src/components/moderation/ModerationDetailsDialog.tsx:107 7813 + #: src/lib/moderation/useModerationCauseDescription.ts:106 7814 + msgid "You've chosen to hide a word or tag within this post." 7815 + msgstr "" 7816 + 7817 + #: src/view/com/posts/FollowingEndOfFeed.tsx:44 7818 + msgid "You've reached the end of your feed! Find some more accounts to follow." 7819 + msgstr "" 7820 + 7821 + #: src/view/com/composer/state/video.ts:435 7822 + msgid "You've reached your daily limit for video uploads (too many bytes)" 7823 + msgstr "" 7824 + 7825 + #: src/view/com/composer/state/video.ts:439 7826 + msgid "You've reached your daily limit for video uploads (too many videos)" 7827 + msgstr "" 7828 + 7829 + #: src/screens/Signup/index.tsx:140 7830 + msgid "Your account" 7831 + msgstr "" 7832 + 7833 + #: src/view/com/modals/DeleteAccount.tsx:88 7834 + msgid "Your account has been deleted" 7835 + msgstr "" 7836 + 7837 + #: src/view/com/composer/state/video.ts:443 7838 + msgid "Your account is not yet old enough to upload videos. Please try again later." 7839 + msgstr "" 7840 + 7841 + #: src/view/screens/Settings/ExportCarDialog.tsx:64 7842 + msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." 7843 + msgstr "" 7844 + 7845 + #: src/screens/Signup/StepInfo/index.tsx:211 7846 + msgid "Your birth date" 7847 + msgstr "" 7848 + 7849 + #: src/view/com/util/post-embeds/VideoEmbed.web.tsx:171 7850 + msgid "Your browser does not support the video format. Please try a different browser." 7851 + msgstr "" 7852 + 7853 + #: src/screens/Messages/components/ChatDisabled.tsx:25 7854 + msgid "Your chats have been disabled" 7855 + msgstr "" 7856 + 7857 + #: src/view/com/modals/InAppBrowserConsent.tsx:44 7858 + msgid "Your choice will be saved, but can be changed later in settings." 7859 + msgstr "" 7860 + 7861 + #: src/screens/Login/ForgotPasswordForm.tsx:51 7862 + #: src/screens/Signup/state.ts:203 7863 + #: src/screens/Signup/StepInfo/index.tsx:108 7864 + #: src/view/com/modals/ChangePassword.tsx:55 7865 + msgid "Your email appears to be invalid." 7866 + msgstr "" 7867 + 7868 + #: src/view/com/modals/ChangeEmail.tsx:120 7869 + msgid "Your email has been updated but not verified. As a next step, please verify your new email." 7870 + msgstr "" 7871 + 7872 + #: src/view/com/modals/VerifyEmail.tsx:122 7873 + msgid "Your email has not yet been verified. This is an important security step which we recommend." 7874 + msgstr "" 7875 + 7876 + #: src/state/shell/progress-guide.tsx:156 7877 + msgid "Your first like!" 7878 + msgstr "" 7879 + 7880 + #: src/view/com/posts/FollowingEmptyState.tsx:43 7881 + msgid "Your following feed is empty! Follow more users to see what's happening." 7882 + msgstr "" 7883 + 7884 + #: src/screens/Signup/StepHandle.tsx:125 7885 + msgid "Your full handle will be" 7886 + msgstr "" 7887 + 7888 + #: src/view/com/modals/ChangeHandle.tsx:258 7889 + msgid "Your full handle will be <0>@{0}</0>" 7890 + msgstr "" 7891 + 7892 + #: src/components/dialogs/MutedWords.tsx:369 7893 + msgid "Your muted words" 7894 + msgstr "" 7895 + 7896 + #: src/view/com/modals/ChangePassword.tsx:158 7897 + msgid "Your password has been changed successfully!" 7898 + msgstr "" 7899 + 7900 + #: src/view/com/composer/Composer.tsx:447 7901 + msgid "Your post has been published" 7902 + msgstr "" 7903 + 7904 + #: src/screens/Onboarding/StepFinished.tsx:241 7905 + msgid "Your posts, likes, and blocks are public. Mutes are private." 7906 + msgstr "" 7907 + 7908 + #: src/view/screens/Settings/index.tsx:118 7909 + msgid "Your profile" 7910 + msgstr "" 7911 + 7912 + #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 7913 + 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." 7914 + msgstr "" 7915 + 7916 + #: src/view/com/composer/Composer.tsx:446 7917 + msgid "Your reply has been published" 7918 + msgstr "" 7919 + 7920 + #: src/components/dms/ReportDialog.tsx:157 7921 + msgid "Your report will be sent to the Bluesky Moderation Service" 7922 + msgstr "" 7923 + 7924 + #: src/screens/Signup/index.tsx:142 7925 + msgid "Your user handle" 7926 + msgstr ""